Do not expose saving tasks to the api and change the way saving data is handled.

This commit is contained in:
Len
2024-06-18 10:40:31 +02:00
parent d1872f6e95
commit f6dd31ba33
11 changed files with 62 additions and 46 deletions
@@ -35,13 +35,7 @@ public interface User {
boolean allowTeleports();
void setAllowTeleports(boolean allowTeleports);
@ApiStatus.Internal
boolean saving();
@ApiStatus.Internal
void saving(boolean saving);
void allowTeleports(boolean allowTeleports);
Request request();
@@ -21,4 +21,6 @@ public interface UserManager {
User createNewUser(UUID uuid);
void saveAllUsers();
}