Small Fixup For World 2

Renamed BOT_WORLD to VARIABLE_XP_RATE
Fixed Dialogue/Message grammar
Added a check for VARIABLE_XP_RATES to ::xprate command
This commit is contained in:
Dark98
2021-12-06 07:01:25 +00:00
parent f64b0469c2
commit 2fc416c3e1
6 changed files with 36 additions and 32 deletions
@@ -25,8 +25,8 @@ public class ConfigLoader {
GameConstants.FILE_SERVER = obj.getBoolean("file_server");
if(obj.has("world_id"))
GameConstants.WORLD = obj.getInt("world_id");
if(obj.has("bot_world"))
GameConstants.BOT_WORLD = obj.getBoolean("bot_world");
if(obj.has("variable_xp_rate"))
GameConstants.VARIABLE_XP_RATE = obj.getBoolean("variable_xp_rate");
if(obj.has("members_only"))
GameConstants.MEMBERS_ONLY = obj.getBoolean("members_only");
if(obj.has("tutorial_island_enabled"))