mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-30 10:05:59 +00:00
upload
This commit is contained in:
parent
e1ac92b784
commit
c866571e93
@ -18,6 +18,9 @@ public enum ConfigEntry
|
|||||||
ALLOW_LAVA_PLACE(Boolean.class, "allow.lava_place"),
|
ALLOW_LAVA_PLACE(Boolean.class, "allow.lava_place"),
|
||||||
ALLOW_TNT_MINECARTS(Boolean.class, "allow.tnt_minecarts"),
|
ALLOW_TNT_MINECARTS(Boolean.class, "allow.tnt_minecarts"),
|
||||||
ALLOW_WATER_PLACE(Boolean.class, "allow.water_place"),
|
ALLOW_WATER_PLACE(Boolean.class, "allow.water_place"),
|
||||||
|
ALLOW_REDSTONE(Boolean.class, "allow.redstone"),
|
||||||
|
ALLOW_FIREWORK_EXPLOSION(Boolean.class, "allow.fireworks"),
|
||||||
|
ALLOW_FROSTWALKER(Boolean.class, "allow.frostwalker"),
|
||||||
//
|
//
|
||||||
MOB_LIMITER_ENABLED(Boolean.class, "moblimiter.enabled"),
|
MOB_LIMITER_ENABLED(Boolean.class, "moblimiter.enabled"),
|
||||||
MOB_LIMITER_MAX(Integer.class, "moblimiter.max"),
|
MOB_LIMITER_MAX(Integer.class, "moblimiter.max"),
|
||||||
@ -35,12 +38,16 @@ public enum ConfigEntry
|
|||||||
SERVER_ADDRESS(String.class, "server.address"),
|
SERVER_ADDRESS(String.class, "server.address"),
|
||||||
SERVER_MOTD(String.class, "server.motd"),
|
SERVER_MOTD(String.class, "server.motd"),
|
||||||
SERVER_OWNERS(List.class, "server.owners"),
|
SERVER_OWNERS(List.class, "server.owners"),
|
||||||
|
SERVER_FOUNDER(List.class, "server.founders"),
|
||||||
SERVER_BAN_URL(String.class, "server.ban_url"),
|
SERVER_BAN_URL(String.class, "server.ban_url"),
|
||||||
SERVER_PERMBAN_URL(String.class, "server.permban_url"),
|
SERVER_PERMBAN_URL(String.class, "server.permban_url"),
|
||||||
//
|
//
|
||||||
ADMINLIST_CLEAN_THESHOLD_HOURS(Integer.class, "adminlist.clean_threshold_hours"),
|
ADMINLIST_CLEAN_THESHOLD_HOURS(Integer.class, "adminlist.clean_threshold_hours"),
|
||||||
ADMINLIST_CONSOLE_IS_SENIOR(Boolean.class, "adminlist.console_is_senior"),
|
ADMINLIST_CONSOLE_IS_SENIOR(Boolean.class, "adminlist.console_is_senior"),
|
||||||
//
|
//
|
||||||
|
COREPROTECT_AUTO_WIPING_ENABLED(Boolean.class, "coreprotect.auto_wipe"),
|
||||||
|
COREPROTECT_FILE_LIMIT(Integer.class, "coreprotect.file_limit"),
|
||||||
|
//
|
||||||
DISABLE_NIGHT(Boolean.class, "disable.night"),
|
DISABLE_NIGHT(Boolean.class, "disable.night"),
|
||||||
DISABLE_WEATHER(Boolean.class, "disable.weather"),
|
DISABLE_WEATHER(Boolean.class, "disable.weather"),
|
||||||
//
|
//
|
||||||
@ -51,6 +58,7 @@ public enum ConfigEntry
|
|||||||
TOSSMOB_ENABLED(Boolean.class, "tossmob_enabled"),
|
TOSSMOB_ENABLED(Boolean.class, "tossmob_enabled"),
|
||||||
AUTOKICK_ENABLED(Boolean.class, "autokick.enabled"),
|
AUTOKICK_ENABLED(Boolean.class, "autokick.enabled"),
|
||||||
MP44_ENABLED(Boolean.class, "mp44_enabled"),
|
MP44_ENABLED(Boolean.class, "mp44_enabled"),
|
||||||
|
MAKE_ARROW_EXPLOSIVE(Boolean.class, "explosive_arrow.enabled"),
|
||||||
//
|
//
|
||||||
PROTECTAREA_ENABLED(Boolean.class, "protectarea.enabled"),
|
PROTECTAREA_ENABLED(Boolean.class, "protectarea.enabled"),
|
||||||
PROTECTAREA_SPAWNPOINTS(Boolean.class, "protectarea.auto_protect_spawnpoints"),
|
PROTECTAREA_SPAWNPOINTS(Boolean.class, "protectarea.auto_protect_spawnpoints"),
|
||||||
@ -177,4 +185,4 @@ public enum ConfigEntry
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user