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:
Tobias Gremeyer 2019-02-20 22:28:04 +00:00 committed by Nick Ignoffo
parent 069051bf3b
commit 22ac5b0da5
2 changed files with 6 additions and 1 deletions

View file

@ -41,7 +41,7 @@ public class SubCommandNetwork extends CommandTreeBase {
@Override
public int getRequiredPermissionLevel() {
return 0;
return 2;
}
abstract class NetworkCommand extends CommandTreeBase {

View file

@ -141,4 +141,9 @@ public class SubCommandRitual extends CommandTreeBase {
}
}
@Override
public int getRequiredPermissionLevel() {
return 2;
}
}