fix: Removes the false positive warning from McAntiMalware

Fixes #300
This commit is contained in:
Sekwah 2022-01-27 18:33:02 +00:00
parent c504909668
commit 9a64ae58c7
1 changed files with 8 additions and 5 deletions

View File

@ -577,12 +577,15 @@ public class Portal {
} else if (command.startsWith("!") && plugin.getSettings().enabledCommandLevel("o")) {
command = command.substring(1);
boolean wasOp = player.isOp();
try {
player.setOp(true);
if(!wasOp) {
try {
player.setOp(true);
player.chat("/" + command);
} finally {
player.setOp(false);
}
} else {
player.chat("/" + command);
// player.performCommand(command);
} finally {
player.setOp(wasOp);
}
} else if (command.startsWith("^") && plugin.getSettings().enabledCommandLevel("p")) {
command = command.substring(1);