Restore ability to recruit full keep of one unit by holding Ctrl+Alt+R

This commit is contained in:
Jyrki Vesterinen 2018-03-19 20:38:25 +02:00
parent 075a9bac34
commit e43d1f5430

View file

@ -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;
@ -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;