mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
Removed debug shutdown command
This commit is contained in:
parent
2578fddcf8
commit
64d13165ad
1 changed files with 1 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue