X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=plugins%2Fclient%2FTheCrawlingEater.py;fp=plugins%2Fclient%2FTheCrawlingEater.py;h=2cf93b96aee4470179e97eb5f4c679a0d9067e48;hb=68eb747114744fa9315617e227ab82b5e57d28da;hp=1a6274e20f5627f6e3e3f516f5326a0a52f43cfd;hpb=2907255fcb06c222272ad1fc9a2934cd784b962c;p=plomrogue diff --git a/plugins/client/TheCrawlingEater.py b/plugins/client/TheCrawlingEater.py index 1a6274e..2cf93b9 100644 --- a/plugins/client/TheCrawlingEater.py +++ b/plugins/client/TheCrawlingEater.py @@ -194,6 +194,7 @@ from client.config.commands import commands commands["o"] = (command_sender("drop"),) commands["i"] = (command_sender("drink"),) commands["p"] = (command_sender("pee"),) +commands["."] = (command_sender("wait"),) commands["0"] = (command_sender("HELP 0"),) commands["1"] = (command_sender("HELP 1"),) commands["2"] = (command_sender("HELP 2"),) @@ -204,3 +205,11 @@ commands["6"] = (command_sender("HELP 6"),) commands["7"] = (command_sender("HELP 7"),) commands["8"] = (command_sender("HELP 8"),) commands["9"] = (command_sender("HELP 9"),) +commands["D"] = (lambda: None,) +commands["J"] = (lambda: None,) +commands["K"] = (lambda: None,) +commands["P"] = (lambda: None,) +commands["U"] = (lambda: None,) +commands["j"] = (lambda: None,) +commands["k"] = (lambda: None,) +commands["W"] = (lambda: None,)