Rename config file in KeyStorage constructor

Changed the configuration file from "messages.yml" to "key_storage.yml". This update fixes a bug where it was writing to the wrong file.
This commit is contained in:
Teriuihi 2024-10-04 21:15:02 +02:00
parent 3c34707944
commit ad9a3491eb

View File

@ -20,7 +20,7 @@ public class KeyStorage extends AbstractConfig {
+ "mnt" + File.separator
+ "configs" + File.separator
+ "PlayerUtils"),
"messages.yml", logger);
"key_storage.yml", logger);
this.logger = logger;
}