home · contact · privacy
Update file names in documentation.
[plomrogue] / README
diff --git a/README b/README
index 5a11cc1c68b3368c9520acfc909e3b1cf4d1c037..14115722c4043bd46756d976a8c4694266b413ce 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
 
@@ -61,14 +63,14 @@ Replay game recording
 ---------------------
 
 Once you start a new world, every move of yours is recorded in a file called
-"record". It gets overwritten when a new game world is started after deletion
-of the "savefile" file. Run "./roguelike -s" to watch the current game's
+"record_save". It gets overwritten when a new game world is started after
+deletion of the "save" file. Run "./roguelike -s" to watch the current game's
 recording from the beginning. Hit any player action key to increment turns (they
-will not trigger the actions usually mapped to them, only repeat the actions
-done at that point in the game as defined in the "record" file). Keys to manage
-windows, scroll on the map and quit the program do their usual thing. Append a
-number to the -s option (like "-s100") to start the recording at the respective
-turn number.
+will not trigger the actions usually mapped to them, only repeat theactions
+done at that point in the game as defined in the "record_save" file). Keys to
+manage windows, scroll on the map and quit the program do their usual thing.
+Append a number to the -s option (like "-s100") to start the recording at the
+respective turn number.
 
 Hacking / server internals and configuration
 --------------------------------------------
@@ -76,7 +78,8 @@ Hacking / server internals and configuration
 The game world is set up and made subject to player commands by
 ./roguelike-server. It's controlled by commands explained in the file
 ./SERVER_COMMANDS. The server usually reads these from the files ./server/in
-(written to by ./roguelike-client), ./confserver/world, ./record and ./savefile.
+(written to by ./roguelike-client), ./confserver/world, ./record_save and
+./save.
 
 All source files are thoroughly documented to explain more details of
 plomrogue's internals. The ./roguelike-server executable can be run with a -v