home · contact · privacy
TCE: Minor changes to keybindings and documentation.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 14 Mar 2016 00:51:30 +0000 (01:51 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 14 Mar 2016 00:51:30 +0000 (01:51 +0100)
plugins/client/TheCrawlingEater.py
plugins/server/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,)
index b456ee7af45a53f71e46f714cad04291da284c01..1cf25a1cd784ec4f2a89c78778000d4835cd4a1e 100644 (file)
@@ -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."