diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-05-04 12:22:23 -0400 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2022-05-04 12:22:23 -0400 |
commit | 590ab6c0e8755f5e5fe9293bd5c7ac93bdd02b30 (patch) | |
tree | 63a0e64351c2087c6c5839a7b913bedba8c3d555 /src/main/java/net/tylermurphy/hideAndSeek/configuration | |
parent | custom model data (diff) | |
download | kenshinshideandseek-590ab6c0e8755f5e5fe9293bd5c7ac93bdd02b30.tar.gz kenshinshideandseek-590ab6c0e8755f5e5fe9293bd5c7ac93bdd02b30.tar.bz2 kenshinshideandseek-590ab6c0e8755f5e5fe9293bd5c7ac93bdd02b30.zip |
leaveOnEnd added to config file
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/configuration')
-rw-r--r-- | src/main/java/net/tylermurphy/hideAndSeek/configuration/Config.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/configuration/Config.java b/src/main/java/net/tylermurphy/hideAndSeek/configuration/Config.java index 9397cc8..589d3a2 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/configuration/Config.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/configuration/Config.java @@ -74,7 +74,8 @@ public class Config { lobbyCountdownEnabled, seekerPing, bungeeLeave, - lobbyItemStartAdmin; + lobbyItemStartAdmin, + leaveOnEnd; public static int minPlayers, @@ -219,6 +220,7 @@ public class Config { teleportToExit = config.getBoolean("teleportToExit"); locale = config.getString("locale", "local"); blockedCommands = config.getStringList("blockedCommands"); + leaveOnEnd = config.getBoolean("leaveOnEnd"); blockedInteracts = new ArrayList<>(); List<String> tempInteracts = config.getStringList("blockedInteracts"); for(String id : tempInteracts){ |