diff --git a/CHANGELOG.md b/CHANGELOG.md index a470382..a7e495c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ### Fixed: - Issue with file manager not properly loading/reloading files. +- Reload config files on /crazyauctions reload ### Added: - `Help-Msg` to the messages.yml diff --git a/src/main/java/com/badbones69/crazyauctions/commands/AuctionCommand.java b/src/main/java/com/badbones69/crazyauctions/commands/AuctionCommand.java index 3ebe7b1..2426cc4 100644 --- a/src/main/java/com/badbones69/crazyauctions/commands/AuctionCommand.java +++ b/src/main/java/com/badbones69/crazyauctions/commands/AuctionCommand.java @@ -83,6 +83,10 @@ public class AuctionCommand implements CommandExecutor { return true; } + Files.config.reload(); + Files.data.reload(); + Files.messages.reload(); + this.fileManager.reloadFiles().init(); this.crazyManager.load();