Move cache where it should be

This commit is contained in:
Minecon724 2025-01-01 14:52:36 +01:00
parent a157943187
commit d03f8e35fb
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2024 Minecon724 * Copyright (C) 2025 Minecon724
* Tweaks724 is licensed under the GNU General Public License. See the LICENSE.md file * Tweaks724 is licensed under the GNU General Public License. See the LICENSE.md file
* in the project root for the full license text. * in the project root for the full license text.
*/ */
@ -28,7 +28,7 @@ public class UpdaterManager {
public UpdaterManager(Plugin plugin) { public UpdaterManager(Plugin plugin) {
this.plugin = plugin; this.plugin = plugin;
cacheFile = new File(plugin.getDataFolder(), "storage/updater"); cacheFile = new File(plugin.getDataFolder(), "storage/cache/updater");
} }
public void init(PluginCommand updatesCommand){ public void init(PluginCommand updatesCommand){