diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f74c1966..d680f28b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ * Added the ability to break blocks normally with a Lumber Axe when sneaking * Added an option to allow Solar Generators to operate in "night-mode" in other dimensions * Added `/sf debug ` (This allows server owners to get more in-depth logging which they can forward to developers for better bug/lag investigations) +* Added an option to disable data zip backups onDisable #### Changes * Massive performance improvements for Cargo networks diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/Slimefun.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/Slimefun.java index 9ebc56ad6..1d92f18f4 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/Slimefun.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/Slimefun.java @@ -425,7 +425,7 @@ public final class Slimefun extends JavaPlugin implements SlimefunAddon { if (config.getBoolean("options.backup-data")) { backupService.run(); } - + // Close and unload any resources from our Metrics Service metricsService.cleanUp();