this.inputEl.value = portal;
this.recalc_input_lines();
} else if (mode == mode_teleport) {
- tui.log_msg("Type Y or y to affirm teleportation, any other key to abort.");
- tui.log_msg("target: " + tui.teleport_target);
+ tui.log_msg("@ May teleport to: " + tui.teleport_target);
+ tui.log_msg("@ Type Y or y to affirm, other keys to abort.");
}
this.full_refresh();
},
if (['Y', 'y'].includes(tui.inputEl.value[0])) {
server.reconnect_to(tui.teleport_target);
} else {
+ tui.log_msg("@ teleportation aborted");
tui.switch_mode(mode_play);
}
}