Also move updater cache

From "cache/updater" to "storage/cache/updater"
This commit is contained in:
Minecon724 2024-12-31 17:04:39 +01:00
parent 6153da89a1
commit c92d4429da
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -28,7 +28,7 @@ public class UpdaterManager {
public UpdaterManager(Plugin plugin) {
this.plugin = plugin;
cacheFile = new File(plugin.getDataFolder(), "cache/updater");
cacheFile = new File(plugin.getDataFolder(), "storage/updater");
}
public void init(PluginCommand updatesCommand){