Remove eol config entries

This commit is contained in:
NotMyFault 2021-02-22 13:24:46 +01:00
parent 1172e02f1b
commit 6cc9b5c62b
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C

View File

@ -83,8 +83,6 @@ public class Settings extends Config {
.getBoolean("protection.redstone.disable-unoccupied", Redstone.DISABLE_UNOCCUPIED);
// UUID
UUID.USE_SQLUUIDHANDLER =
config.getBoolean("uuid.use_sqluuidhandler", UUID.USE_SQLUUIDHANDLER);
UUID.OFFLINE = config.getBoolean("UUID.offline", UUID.OFFLINE);
UUID.FORCE_LOWERCASE = config.getBoolean("UUID.force-lowercase", UUID.FORCE_LOWERCASE);
@ -263,9 +261,6 @@ public class Settings extends Config {
public static boolean OFFLINE = false;
@Comment("Force using lowercase UUIDs")
public static boolean FORCE_LOWERCASE = false;
@Comment("Use a database to store UUID/name info")
public static boolean
USE_SQLUUIDHANDLER = false;
@Comment("How many UUIDs that may be stored in the cache")
public static int UUID_CACHE_SIZE = 100000;
@Comment("Rate limit (per 10 minutes) for background UUID fetching from the Mojang API")
@ -578,9 +573,6 @@ public class Settings extends Config {
public static boolean ON_CLEAR = false;
@Comment("Teleport outside of the plot before deleting")
public static boolean ON_DELETE = false;
@Comment("The visit command is ordered by world instead of globally")
public static boolean
PER_WORLD_VISIT = false;
}
@ -698,8 +690,6 @@ public class Settings extends Config {
public static boolean PERSISTENT_META = true;
@Comment("Optimizes permission checks")
public static boolean PERMISSION_CACHE = true;
@Comment("Optimizes block changing code")
public static boolean BLOCK_CACHE = true;
@Comment("Getting a rating won't need the database")
public static boolean RATING_CACHE =
true;