X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=rogue_chat.html;h=f0f2faa1213ac1786ca59eaaafeb4f4eac9467e9;hb=2bc91772ca3d5056eb5a252869d8dff33c586da5;hp=41cf365c0a5f88fe71dad7977a1e1e6aa12f4d03;hpb=20081e06dcb7dddcf58baee5be74cd6ad740f22c;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index 41cf365..f0f2faa 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -474,6 +474,7 @@ let server = { t.position = parser.parse_yx(tokens[1]); t.type_ = tokens[2]; t.protection = tokens[3]; + t.portable = parseInt(tokens[5]); } else if (tokens[0] === 'THING_NAME') { let t = game.get_thing(tokens[1], false); if (t) { @@ -809,7 +810,7 @@ let tui = { } else if (this.mode.is_single_char_entry) { this.show_help = true; } else if (this.mode.name == 'take_thing') { - this.log_msg("Things in reach for pick-up:"); + this.log_msg("Portable things in reach for pick-up:"); const player = game.things[game.player_id]; const y = player.position[0] const x = player.position[1] @@ -832,7 +833,7 @@ let tui = { const t = game.things[t_id]; if (select_range.includes(t.position[0].toString() + ':' + t.position[1].toString()) - && t != player && t.type_ != 'Player') { + && t.portable) { this.selectables.push([t_id, t]); } };