Removed a unnecessary check

In "hasPermission" is the removed check already included
This commit is contained in:
Lars Artmann
2018-11-22 05:54:05 +01:00
committed by GitHub
parent 74ee716480
commit 9dad1a7020

View File

@@ -17,11 +17,6 @@ public class ShutdownCommand implements Command {
@Override
public void execute(CommandSource source, String @NonNull [] args) {
if (source != server.getConsoleCommandSource()) {
source
.sendMessage(TextComponent.of("You are not allowed to use this command.", TextColor.RED));
return;
}
server.shutdown(true);
}