diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2021-10-31 11:25:27 -0400 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2021-10-31 11:25:27 -0400 |
commit | 2a526291526811841d02ff813d9b3a7752570b43 (patch) | |
tree | 5bbac1fc857d4a87446470f1db5356ec89b64536 /src/main/java/net/tylermurphy/hideAndSeek/command/Reload.java | |
parent | 1.3.1 build 3 (diff) | |
download | kenshinshideandseek-2a526291526811841d02ff813d9b3a7752570b43.tar.gz kenshinshideandseek-2a526291526811841d02ff813d9b3a7752570b43.tar.bz2 kenshinshideandseek-2a526291526811841d02ff813d9b3a7752570b43.zip |
1.3.1 build 4
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/command/Reload.java')
-rw-r--r-- | src/main/java/net/tylermurphy/hideAndSeek/command/Reload.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/command/Reload.java b/src/main/java/net/tylermurphy/hideAndSeek/command/Reload.java index 2c7ba04..971cd13 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/command/Reload.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/command/Reload.java @@ -2,6 +2,7 @@ package net.tylermurphy.hideAndSeek.command; import static net.tylermurphy.hideAndSeek.configuration.Config.*; +import net.tylermurphy.hideAndSeek.configuration.Items; import org.bukkit.command.CommandSender; import net.tylermurphy.hideAndSeek.Main; @@ -20,6 +21,7 @@ public class Reload implements ICommand { } Config.loadConfig(); Localization.loadLocalization(); + Items.loadItems(); sender.sendMessage(messagePrefix + message("CONFIG_RELOAD")); } |