X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=rogue_chat.html;h=1ace4c3d40c59a68b6be65d9ed34390f6e6f02d1;hb=8e0d2b4b88650986740e7db561bfb92f24c7fe9d;hp=9f02d8dc790675dd29a7047ff8fae2d53d8ffdec;hpb=4d29ed223e278162c74c2658702759349d3b52e1;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index 9f02d8d..1ace4c3 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -465,6 +465,7 @@ let server = { this.websocket.onopen = function(event) { game.thing_types = {}; game.terrains = {}; + tui.is_admin = false; server.send(['TASKS']); server.send(['TERRAINS']); server.send(['THING_TYPES']); @@ -577,8 +578,6 @@ let server = { this.send(['GET_GAMESTATE']); tui.switch_mode('post_login_wait'); tui.log_msg('@ welcome!') - tui.log_msg('@ hint: see top of terminal for how to get help.') - tui.log_msg('@ hint: enter study mode to understand your environment.') } else if (tokens[0] === 'DEFAULT_COLORS') { terminal.set_default_colors(); } else if (tokens[0] === 'RANDOM_COLORS') { @@ -816,6 +815,8 @@ let tui = { } this.draw_face = false; this.tile_draw = false; + this.ascii_draw_stage = 0; + this.full_ascii_draw = ''; if (mode_name == 'command_thing' && (!game.player.carrying || !game.player.carrying.commandable)) { return fail('not carrying anything commandable');