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:
|
### Fixed:
|
||||||
- Moved i/o operations off the main thread.
|
- Issue with file manager not properly loading/reloading files.
|
||||||
- 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.
|
|
@ -10,7 +10,7 @@ plugins {
|
|||||||
|
|
||||||
val buildNumber: String? = System.getenv("BUILD_NUMBER")
|
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
|
val isSnapshot = true
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ triumph-cmd = "2.0.0-ALPHA-10"
|
|||||||
tirumph-gui = "3.1.7"
|
tirumph-gui = "3.1.7"
|
||||||
jetbrains = "24.1.0"
|
jetbrains = "24.1.0"
|
||||||
kyori = "4.17.0"
|
kyori = "4.17.0"
|
||||||
vital = "1.9"
|
vital = "1.9.8"
|
||||||
|
|
||||||
# Paper
|
# Paper
|
||||||
paperweight = "1.7.1"
|
paperweight = "1.7.1"
|
||||||
|
@ -83,9 +83,8 @@ public class AuctionCommand implements CommandExecutor {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.fileManager.reloadFiles();
|
this.fileManager.reloadFiles().init();
|
||||||
|
|
||||||
this.fileManager.init();
|
|
||||||
this.crazyManager.load();
|
this.crazyManager.load();
|
||||||
|
|
||||||
sender.sendMessage(Messages.RELOAD.getMessage(sender));
|
sender.sendMessage(Messages.RELOAD.getMessage(sender));
|
||||||
|
Loading…
Reference in New Issue
Block a user