Move cache where it should be
This commit is contained in:
parent
a157943187
commit
d03f8e35fb
1 changed files with 2 additions and 2 deletions
|
@ -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){
|
||||||
|
|
Loading…
Reference in a new issue