From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 14 Mar 2016 00:51:30 +0000 (+0100)
Subject: TCE: Minor changes to keybindings and documentation.
X-Git-Tag: TCE_proper_minor_fixes~1
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/%22https:/validator.w3.org/task?a=commitdiff_plain;h=68eb747114744fa9315617e227ab82b5e57d28da;p=plomrogue

TCE: Minor changes to keybindings and documentation.
---

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,)
diff --git a/plugins/server/TheCrawlingEater.py b/plugins/server/TheCrawlingEater.py
index b456ee7..1cf25a1 100644
--- a/plugins/server/TheCrawlingEater.py
+++ b/plugins/server/TheCrawlingEater.py
@@ -29,6 +29,7 @@ def command_help(str_int):
             log("drink: i")
             log("defecate: o")
             log("pee: p")
+            log("wait: .")
             log("autopilot: A")
             log("look mode: l")
             log("quit: Q")
@@ -50,7 +51,7 @@ def command_help(str_int):
             log(" ")
             log("[HELP SCREEN 3: environment 2/3]")
             log("Use the 'l' command to investigate the environment. "
-                "Its cursor will describe the area pointed at by two numbers: "
+                "Its cursor may describe the area pointed at by two numbers: "
                 "ground elevation/matter thickness (left), wetness (right). "
                 "You cannot breathe there if the sum of both is > 5. "
                 "Greater ground elevation means slower movement."