mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-12 18:43:40 +03:00
[FEATURE] ClientPermissions сериализуется в Long
This commit is contained in:
parent
d6ef1fd99d
commit
5c88b8eb14
2 changed files with 9 additions and 19 deletions
|
@ -103,7 +103,7 @@ public static void main(String... args) throws Throwable {
|
|||
gsonBuiler.setPrettyPrinting();
|
||||
gson = gsonBuiler.create();
|
||||
initGson();
|
||||
if(args.length > 0 && args[0].equals("setup"))
|
||||
if(args.length > 0 && args[0].equals("setup") && !disableSetup)
|
||||
{
|
||||
generateConfigIfNotExists();
|
||||
LogHelper.debug("Read ServerWrapperConfig.json");
|
||||
|
|
|
@ -8,25 +8,20 @@
|
|||
public class ClientPermissions {
|
||||
public static final ClientPermissions DEFAULT = new ClientPermissions();
|
||||
@LauncherAPI
|
||||
public boolean canAdmin = false;
|
||||
public boolean canAdmin;
|
||||
@LauncherAPI
|
||||
public boolean canServer = false;
|
||||
public boolean canServer;
|
||||
@LauncherAPI
|
||||
public boolean canUSR1 = false;
|
||||
public boolean canUSR1;
|
||||
@LauncherAPI
|
||||
public boolean canUSR2 = false;
|
||||
public boolean canUSR2;
|
||||
@LauncherAPI
|
||||
public boolean canUSR3 = false;
|
||||
public boolean canUSR3;
|
||||
@LauncherAPI
|
||||
public boolean canBot = false;
|
||||
public boolean canBot;
|
||||
|
||||
public ClientPermissions(HInput input) throws IOException {
|
||||
canAdmin = input.readBoolean();
|
||||
canServer = input.readBoolean();
|
||||
canUSR1 = input.readBoolean();
|
||||
canUSR2 = input.readBoolean();
|
||||
canUSR3 = input.readBoolean();
|
||||
canBot = input.readBoolean();
|
||||
this(input.readLong());
|
||||
}
|
||||
|
||||
public ClientPermissions() {
|
||||
|
@ -67,11 +62,6 @@ public static ClientPermissions getSuperuserAccount() {
|
|||
}
|
||||
|
||||
public void write(HOutput output) throws IOException {
|
||||
output.writeBoolean(canAdmin);
|
||||
output.writeBoolean(canServer);
|
||||
output.writeBoolean(canUSR1);
|
||||
output.writeBoolean(canUSR2);
|
||||
output.writeBoolean(canUSR3);
|
||||
output.writeBoolean(canBot);
|
||||
output.writeLong(toLong());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue