mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-29 07:04:04 +00:00
fixed hotkey clash in take shot -> hide the player
This commit is contained in:
@@ -426,7 +426,7 @@ void menu() {
|
||||
dialog::addBoolItem(XLAT("disable the HUD"), hide_hud, 'h');
|
||||
dialog::add_action([] { hide_hud = !hide_hud; });
|
||||
|
||||
dialog::addBoolItem(XLAT("hide the player"), !mapeditor::drawplayer, 'p');
|
||||
dialog::addBoolItem(XLAT("hide the player"), !mapeditor::drawplayer, 'H');
|
||||
dialog::add_action([] { mapeditor::drawplayer = !mapeditor::drawplayer; });
|
||||
|
||||
dialog::addItem(XLAT("customize colors and aura"), 'c');
|
||||
|
Reference in New Issue
Block a user