Skip to content

Commit

Permalink
Restore ability to recruit full keep of one unit by holding Ctrl+Alt+R
Browse files Browse the repository at this point in the history
(cherry-picked from commit e43d1f5)
  • Loading branch information
jyrkive committed Oct 7, 2018
1 parent c04d542 commit 21b1ea7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hotkey/command_executor.cpp
Expand Up @@ -92,6 +92,9 @@ bool command_executor::do_execute_command(const hotkey_command& cmd, int /*inde

// handling of hotkeys which activate even on hold events
switch(cmd.id) {
case HOTKEY_REPEAT_RECRUIT:
repeat_recruit();
return true;
case HOTKEY_SCROLL_UP:
scroll_up(true);
return true;
Expand Down Expand Up @@ -177,9 +180,6 @@ bool command_executor::do_execute_command(const hotkey_command& cmd, int /*inde
case HOTKEY_RECRUIT:
recruit();
break;
case hotkey::HOTKEY_REPEAT_RECRUIT:
repeat_recruit();
break;
case HOTKEY_SPEAK:
speak();
break;
Expand Down

0 comments on commit 21b1ea7

Please sign in to comment.