Fixes /bloodmagic network command permissions required for executing the command. (#1613)

Inheriting from CommandTreeBase, the required permission level was 4.
All other BloodMagic commands had a required permission level of 2.
This resulted in network command not able to be executed from a Command Block, which have a permission level of 2.
This commit is contained in:
Tobias 2019-09-04 17:38:42 +02:00 committed by Nick Ignoffo
parent a6a5704a42
commit cbefc14f72

View file

@ -50,6 +50,11 @@ public class SubCommandNetwork extends CommandTreeBase {
public SoulNetwork network;
public String uuid;
@Override
public int getRequiredPermissionLevel() {
return 2;
}
public Integer commandHelperAmount(MinecraftServer server, ICommandSender sender, String[] args) {
int amount;
if (args.length == 0)