home · contact · privacy
TCE: Minor changes to keybindings and documentation.
[plomrogue] / plugins / client / TheCrawlingEater.py
index 1a6274e20f5627f6e3e3f516f5326a0a52f43cfd..2cf93b96aee4470179e97eb5f4c679a0d9067e48 100644 (file)
@@ -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,)