diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-07-27 13:35:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 13:35:56 -0400 |
commit | 61455cec8853585a8c6d4577a59e4933d020fb44 (patch) | |
tree | 496727f5d98fb90672a3bf0bf10af6789d6c9a4a /src/main/java/net/tylermurphy/hideAndSeek/configuration | |
parent | Merge pull request #68 from tylermurphy534/1.5.0 (diff) | |
parent | Save Inventorys on Leave (diff) | |
download | kenshinshideandseek-61455cec8853585a8c6d4577a59e4933d020fb44.tar.gz kenshinshideandseek-61455cec8853585a8c6d4577a59e4933d020fb44.tar.bz2 kenshinshideandseek-61455cec8853585a8c6d4577a59e4933d020fb44.zip |
Merge pull request #71 from tylermurphy534/1.5.1
1.5.1
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 4aeac68..123432d 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/configuration/Config.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/configuration/Config.java @@ -89,7 +89,8 @@ public class Config { lobbyItemStartAdmin, leaveOnEnd, mapSaveEnabled, - allowNaturalCauses; + allowNaturalCauses, + saveInventory; public static int minPlayers, @@ -267,6 +268,7 @@ public class Config { leaveOnEnd = config.getBoolean("leaveOnEnd"); placeholderError = config.getString("placeholder.incorrect"); placeholderNoData = config.getString("placeholder.noData"); + saveInventory = config.getBoolean("saveInventory"); try { countdownDisplay = CountdownDisplay.valueOf(config.getString("hideCountdownDisplay")); } catch (IllegalArgumentException e) { |