Skip to content

Commit

Permalink
fix issues with file manager
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Jul 12, 2024
1 parent 5f4110c commit 361f61e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 13 deletions.
11 changes: 2 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command cmd, @N
return true;
}

this.fileManager.reloadFiles();
this.fileManager.reloadFiles().init();

this.fileManager.init();
this.crazyManager.load();

sender.sendMessage(Messages.RELOAD.getMessage(sender));
Expand Down

0 comments on commit 361f61e

Please sign in to comment.