Removed ExecutionBlockTimeout property

Removed ExecutionBLockTimeout property since it is pointless
This commit is contained in:
J-onasJones 2023-09-26 23:46:21 +02:00
parent 01214a78e7
commit d287466669
2 changed files with 9 additions and 16 deletions

View file

@ -9,16 +9,14 @@ public class CommandPreRegistry { //TODO: Add timeout before command can be ran
private int permissionLevel;
private int execTimeout;
private String ingamecommand;
private int execRerunTimeout;
private boolean broadcastToOp;
public void init(Constants.CmdMode commandmode, String command, int permissionLevel, int execTimeout, String ingamecommand, int execRerunTimeout, boolean broadcastToOp) {
public void init(Constants.CmdMode commandmode, String command, int permissionLevel, int execTimeout, String ingamecommand, boolean broadcastToOp) {
this.commandmode = commandmode;
this.command = command;
this.permissionLevel = permissionLevel;
this.execTimeout = execTimeout;
this.ingamecommand = ingamecommand;
this.execRerunTimeout = execRerunTimeout;
this.broadcastToOp = broadcastToOp;
}
}