Allow left click to cancel AttackMove without clearing selected units.

This commit is contained in:
Paul Chote
2019-08-10 10:32:41 +00:00
committed by abcdefg30
parent ad099b5c98
commit 292196e2d6
4 changed files with 62 additions and 59 deletions

View File

@@ -68,5 +68,7 @@ namespace OpenRA.Orders
// Custom order generators always override selection
return true;
}
public override bool ClearSelectionOnLeftClick { get { return false; } }
}
}

View File

@@ -204,5 +204,7 @@ namespace OpenRA.Orders
Target = target;
}
}
public virtual bool ClearSelectionOnLeftClick { get { return true; } }
}
}