mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-10 10:10:22 +01:00
fix issues with file manager
This commit is contained in:
parent
5f4110c2f2
commit
361f61e591
11
CHANGELOG.md
11
CHANGELOG.md
@ -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.
|
@ -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
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user