This commit is contained in:
Christian Kroll 2012-06-14 06:12:17 +02:00
parent 5278dc13e6
commit 65a86f4040
1 changed files with 2 additions and 2 deletions

View File

@ -310,8 +310,6 @@ public class TheGame implements StatemachineListener, GuiEventListener, IRCEvent
machine.pauseTimer(true);
} else if(params.startsWith("resume")) {
machine.pauseTimer(false);
} else if(params.startsWith("gem")) {
ircClient.say("You don't say?");
}
}
@ -416,6 +414,8 @@ public class TheGame implements StatemachineListener, GuiEventListener, IRCEvent
ircClient.say("valid commands: lamp on, lamp off, lamp blink, lamp stop, oven on, oven off, rokets");
} else if(message.contains("disco")) {
ircClient.say("party! use: disco {on,off}");
} else if(params.contains("gem")) {
ircClient.say("you don't say?");
} else {
ircClient.say("dafuq?");
}