diff --git a/paper/src/main/java/net/momirealms/customnameplates/paper/storage/method/database/sql/AbstractSQLDatabase.java b/paper/src/main/java/net/momirealms/customnameplates/paper/storage/method/database/sql/AbstractSQLDatabase.java index ee19a5e..7d4a137 100644 --- a/paper/src/main/java/net/momirealms/customnameplates/paper/storage/method/database/sql/AbstractSQLDatabase.java +++ b/paper/src/main/java/net/momirealms/customnameplates/paper/storage/method/database/sql/AbstractSQLDatabase.java @@ -214,7 +214,7 @@ public abstract class AbstractSQLDatabase extends AbstractStorage { public Set getUniqueUsers(boolean legacy) { Set uuids = new HashSet<>(); try (Connection connection = getConnection(); - PreparedStatement statement = connection.prepareStatement(String.format(SqlConstants.SQL_SELECT_ALL_UUID, legacy ? getTableName("fishingbag") : getTableName("data")))) { + PreparedStatement statement = connection.prepareStatement(String.format(SqlConstants.SQL_SELECT_ALL_UUID, getTableName("data")))) { try (ResultSet rs = statement.executeQuery()) { while (rs.next()) { UUID uuid = UUID.fromString(rs.getString("uuid")); diff --git a/paper/src/main/resources/config.yml b/paper/src/main/resources/config.yml index 96f81b7..907e5be 100644 --- a/paper/src/main/resources/config.yml +++ b/paper/src/main/resources/config.yml @@ -97,7 +97,6 @@ other-settings: # Thread pool settings thread-pool-settings: # The size of the core Thread pool, that is, the size of the Thread pool when there is no task to execute - # Increase the size of corePoolSize when you are running a large server with many players fishing at the same time corePoolSize: 10 # The maximum number of threads allowed to be created in the Thread pool. The current number of threads in the Thread pool will not exceed this value maximumPoolSize: 10 diff --git a/paper/src/main/resources/configs/font-width-data.yml b/paper/src/main/resources/configs/font-width-data.yml index dc8a233..5fe48c7 100644 --- a/paper/src/main/resources/configs/font-width-data.yml +++ b/paper/src/main/resources/configs/font-width-data.yml @@ -1,5 +1,8 @@ +# namespace:font minecraft:default: + # default width default: 8 + # available font data template: unifont/ascii/nonlatin_european/accented/unicode(legacy) template-loading-sequence: - unifont - nonlatin_european