Skip to content

Commit

Permalink
3.5.0 (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
CJCrafter authored Oct 11, 2024
1 parent 0cd878d commit de1b234
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public void onEnable() {
});

registerCommands();
// registerUpdateChecker();
registerUpdateChecker();

long tookMillis = System.currentTimeMillis() - millisCurrent;
debug.debug("Enabled WeaponMechanics in " + NumberUtil.toTime((int) (tookMillis / 1000)) + "s");
Expand Down Expand Up @@ -475,6 +475,9 @@ void registerPermissions() {
}

void registerUpdateChecker() {
if (true) {
return; // TODO: Folia compatible update checker
}
if (!basicConfiguration.getBoolean("Update_Checker.Enable", true))
return;

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Versions of the 2 plugins stored in this repo.
mechanicsCoreVersion=3.4.13-FOLIA
weaponMechanicsVersion=3.4.14-FOLIA
mechanicsCoreVersion=3.5.0
weaponMechanicsVersion=3.5.0

# Version of the resource pack
resourcePackVersion=2.1.2
Expand Down

0 comments on commit de1b234

Please sign in to comment.