Change the setter of AttackBase.IsAiming to be public

This commit is contained in:
abcdefg30
2018-12-25 13:57:38 +01:00
committed by reaperrr
parent 8689030f79
commit 9c4cb9091e

View File

@@ -44,7 +44,7 @@ namespace OpenRA.Mods.Common.Traits
readonly string attackOrderName = "Attack";
readonly string forceAttackOrderName = "ForceAttack";
[Sync] public bool IsAiming { get; internal set; }
[Sync] public bool IsAiming { get; set; }
public IEnumerable<Armament> Armaments { get { return getArmaments(); } }
protected IFacing facing;