home · contact · privacy
Document "wait" action in log help and README.
authorChristian Heller <c.heller@plomlompom.de>
Thu, 12 Mar 2015 03:15:12 +0000 (04:15 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 12 Mar 2015 03:15:12 +0000 (04:15 +0100)
README
roguelike-server

diff --git a/README b/README
index 5a11cc1c68b3368c9520acfc909e3b1cf4d1c037..e03e08dafa7610b8fb323921a46740796d17c212 100644 (file)
--- a/README
+++ b/README
@@ -47,6 +47,8 @@ d - move east
 x - move south-west
 c - move south-east
 
+w - wait one turn
+
 l - toggle "look" mode, investigate map cells by moving a cursor over the map
     instead of the player avatar
 
index f6d2601c64efbb3eb20c73fe9b749f514d4fffac..dd9733cef420e0b1f4801213574426165adca6dc 100755 (executable)
@@ -608,7 +608,7 @@ def build_fov_map(t):
 def log_help():
     """Send quick usage info to log."""
     strong_write(io_db["file_out"], "LOG "
-                 + "Use 'w'/'e'/'s'/'d'/'x'/'c' to move.\n")
+                 + "Use 'w'/'e'/'s'/'d'/'x'/'c' to move, and 'w' to wait.\n")
     strong_write(io_db["file_out"], "LOG "
                  + "Use 'p' to pick up objects, and 'D' to drop them.\n")
     strong_write(io_db["file_out"], "LOG "
@@ -619,6 +619,7 @@ def log_help():
                  + "Use 'l' to toggle 'look' mode (move an exploration cursor "
                  + "instead of the player over the map).\n")
     strong_write(io_db["file_out"], "LOG See README file for more details.\n")
+    strong_write(io_db["file_out"], "LOG \n")
 
 
 def decrement_lifepoints(t):