Removed debug shutdown command

This commit is contained in:
kuroppoi 2021-04-18 20:59:04 +02:00
parent 2578fddcf8
commit 64d13165ad

View file

@ -1,6 +1,5 @@
package brainwine.gameserver.server.commands;
import brainwine.gameserver.GameServer;
import brainwine.gameserver.entity.player.Player;
import brainwine.gameserver.server.PlayerCommand;
import brainwine.gameserver.server.RegisterCommand;
@ -13,10 +12,6 @@ public class ChatCommand extends PlayerCommand {
@Override
public void process(Player player) {
if(text.equalsIgnoreCase("!stop")) {
GameServer.getInstance().shutdown();
} else {
player.getZone().chat(player, text);
}
player.getZone().chat(player, text);
}
}