Tested everything again, noticed 2 oversights that didn't have any impact. (#1548)
Usable in both SSP (creative mode) and SMP (op). Required permission level for commands is 2 (server's "op" permission level can be seen and changed in the server.properties).
This commit is contained in:
parent
069051bf3b
commit
22ac5b0da5
|
@ -41,7 +41,7 @@ public class SubCommandNetwork extends CommandTreeBase {
|
|||
|
||||
@Override
|
||||
public int getRequiredPermissionLevel() {
|
||||
return 0;
|
||||
return 2;
|
||||
}
|
||||
|
||||
abstract class NetworkCommand extends CommandTreeBase {
|
||||
|
|
|
@ -141,4 +141,9 @@ public class SubCommandRitual extends CommandTreeBase {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getRequiredPermissionLevel() {
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue