Changed: Attack-move now only triggers when you use 'a' without any modifier

This commit is contained in:
geckosoft
2010-11-11 04:22:17 +01:00
committed by Bob
parent 8b3512e2f1
commit 6d67ab2240

View File

@@ -15,7 +15,7 @@ namespace OpenRA.Mods.RA
{
if (self.World.LocalPlayer == null) return false;
if (e.KeyChar == 'a')
if (e.KeyChar == 'a' && e.Modifiers == Modifiers.None)
{
StartAttackMoveOrder(self.World);
return true;