tui.switch_mode(mode_chat);
} else if (event.key == 'p') {
tui.switch_mode(mode_play);
- } else if (event.key === 'a') {
- explorer.move('left');
} else if (event.key === tui.key_left) {
- explorer.move('right');
+ explorer.move('left');
} else if (event.key === tui.key_right) {
- explorer.move('up');
+ explorer.move('right');
} else if (event.key === tui.key_up) {
- explorer.move('down');
+ explorer.move('up');
} else if (event.key === tui.key_down) {
+ explorer.move('down');
+ } else if (event.key === 'e') {
tui.switch_mode(mode_annotate);
};
}