Move auth storage
From "auth storage" to "storage/auth"
This commit is contained in:
parent
1cc787230c
commit
69cb2ef9af
1 changed files with 2 additions and 3 deletions
|
@ -19,12 +19,11 @@ public class AuthStorage {
|
|||
private final File keysDirectory;
|
||||
|
||||
AuthStorage(Plugin plugin) {
|
||||
File directory = new File(plugin.getDataFolder(), "auth storage");
|
||||
File directory = new File(plugin.getDataFolder(), "storage/auth");
|
||||
this.playersDirectory = new File(directory, "players");
|
||||
this.keysDirectory = new File(directory, "keys");
|
||||
|
||||
directory.mkdir();
|
||||
keysDirectory.mkdir();
|
||||
keysDirectory.mkdirs();
|
||||
playersDirectory.mkdir();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue