From 8b5fd454df9108f4617968958db1427649fa5d7c Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 2 Aug 2014 19:50:42 +1200 Subject: [PATCH] Change unit selection hotkeys to match C&C3. --- OpenRA.Game/Settings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index 8a2afe95e3..cc2ff4904f 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -150,8 +150,8 @@ namespace OpenRA public Hotkey CycleBaseKey = new Hotkey(Keycode.BACKSPACE, Modifiers.None); public Hotkey ToLastEventKey = new Hotkey(Keycode.SPACE, Modifiers.None); public Hotkey ToSelectionKey = new Hotkey(Keycode.HOME, Modifiers.None); - public Hotkey SelectAllUnitsKey = new Hotkey(Keycode.A, Modifiers.Ctrl); - public Hotkey SelectUnitsByTypeKey = new Hotkey(Keycode.T, Modifiers.Ctrl); + public Hotkey SelectAllUnitsKey = new Hotkey(Keycode.Q, Modifiers.None); + public Hotkey SelectUnitsByTypeKey = new Hotkey(Keycode.W, Modifiers.None); public Hotkey PauseKey = new Hotkey(Keycode.F8, Modifiers.None); public Hotkey PlaceBeaconKey = new Hotkey(Keycode.B, Modifiers.None);