home · contact · privacy
Minor help fixes.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 10 Nov 2020 05:53:07 +0000 (06:53 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 10 Nov 2020 05:53:07 +0000 (06:53 +0100)
rogue_chat_nocanvas_monochrome.html

index 863495981002fd43669d341845b66111da9585de..8ceb72870f5c1c6efd9230d9338f7ac4789b133b 100644 (file)
@@ -300,7 +300,7 @@ let mode_post_login_wait = new Mode('waiting for game world', 'Waiting for a ser
 let mode_chat = new Mode('chat', 'This mode allows you to engage in chit-chat with other users.  Any line you enter into the input prompt that does not start with a "/" will be sent to all users.  Lines that start with a "/" are used for commands like:', true, false);
 let mode_annotate = new Mode('annotate', 'This mode allows you to add/edit a comment on the tile you are currently standing on.  Hit Return to leave.', true, true);
 let mode_play = new Mode('play', 'This mode allows you to interact with the map.', false, false);
-let mode_study = new Mode('study', 'This mode allows you to study the map and its tiles in detail.  Move the question mark over a tile, and the right half of the screen will show detailed information on it (unless obscured by this help screen here, which you can disappear with any key).', false, true);
+let mode_study = new Mode('study', 'This mode allows you to study the map and its tiles in detail.  Move the question mark over a tile, and the right half of the screen will show detailed information on it.', false, true);
 let mode_edit = new Mode('edit', 'This mode allows you to change the map tile you currently stand on (if your terrain editing password authorizes you so).  Just enter any printable ASCII character to imprint it on the ground below you.', false, false);
 let mode_teleport = new Mode('teleport', 'Follow the instructions to re-connect and log-in to another server, or enter anything else to abort.', true);
 let mode_portal = new Mode('portal', 'This mode imprints/edits/removes a teleportation target on the ground you are currently standing on.  Enter or edit a URL to imprint a teleportation target; enter emptiness to remove a pre-existing teleportation target.  Hit Return to leave.', true, true);
@@ -538,7 +538,7 @@ let tui = {
           content += "Available actions:\n";
           content += '[' + movement_keys_desc + '] – move question mark\n';
           content += '[' + this.keys.toggle_map_mode + '] – toggle view between terrain, and password protection areas\n';
-          content += '\nOther modes available from here:';
+          content += '\nOther modes available from here:\n';
           content += '[' + this.keys.switch_to_chat + '] – chat mode\n';
           content += '[' + this.keys.switch_to_play + '] – play mode\n';
           content += '[' + this.keys.switch_to_portal + '] – portal mode\n';