modify default perms
All checks were successful
/ Auto-Build-App (push) Successful in 1m40s

This commit is contained in:
pietru 2024-11-04 21:04:07 +01:00
parent 927fe8d065
commit 9f032739db
2 changed files with 3 additions and 2 deletions

View file

@ -13,6 +13,7 @@ public class GroupPerms {
public static GroupPerms get_default_perms(){
GroupPerms val = new GroupPerms();
val.group_id="default";
val.perms.add("help");
val.perms.add("gpos");
val.perms.add("my_zone");
val.perms.add("my_id");

View file

@ -36,7 +36,7 @@ public class ObjectPermList {
val.addChild("explode", new JsonValue(false));
val.addChild("enter", new JsonValue(true));
val.addChild("spawn_mob", new JsonValue(true));
val.addChild("spawn_mob", new JsonValue(false));
}
public static void get_default_perms(ObjectPermList val){
@ -46,6 +46,6 @@ public class ObjectPermList {
val.set_bool_perm("explode", false);
val.set_bool_perm("enter", true);
val.set_bool_perm("spawn_mob", true);
val.set_bool_perm("spawn_mob", false);
}
}