fix issues with file manager

This commit is contained in:
Ryder Belserion 2024-07-12 12:01:41 -04:00
parent 5f4110c2f2
commit 361f61e591
No known key found for this signature in database
4 changed files with 5 additions and 13 deletions

View File

@ -1,9 +1,2 @@
### Changes:
- Moved i/o operations off the main thread.
- Improved performance with the bid command.
### Added:
- Folia Support
### Removed:
- Unicode checks for books, this might not be needed anymore due to recent Mojang/Paper changes, but I will add it back if an issue appears related to books.
### Fixed:
- Issue with file manager not properly loading/reloading files.

View File

@ -10,7 +10,7 @@ plugins {
val buildNumber: String? = System.getenv("BUILD_NUMBER")
rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "1.6"
rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "1.6.1"
val isSnapshot = true

View File

@ -19,7 +19,7 @@ triumph-cmd = "2.0.0-ALPHA-10"
tirumph-gui = "3.1.7"
jetbrains = "24.1.0"
kyori = "4.17.0"
vital = "1.9"
vital = "1.9.8"
# Paper
paperweight = "1.7.1"

View File

@ -83,9 +83,8 @@ public class AuctionCommand implements CommandExecutor {
return true;
}
this.fileManager.reloadFiles();
this.fileManager.reloadFiles().init();
this.fileManager.init();
this.crazyManager.load();
sender.sendMessage(Messages.RELOAD.getMessage(sender));