add 'h' hotkey to cycle through bases (fact/mcv)

This commit is contained in:
Chris Forbes
2010-05-03 17:47:08 +12:00
parent b47317f9db
commit 8c4502429c
5 changed files with 28 additions and 0 deletions

View File

@@ -500,6 +500,9 @@ namespace OpenRA
if (c >= '0' && c <= '9')
Game.controller.selection.DoControlGroup(world,
c - '0', modifiers);
if (c == 'h')
Game.controller.GotoNextBase();
}
if( sync != Game.world.SyncHash() )