From 9c4cb9091e5a236cd1770f0f91c73563151d0bee Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Tue, 25 Dec 2018 13:57:38 +0100 Subject: [PATCH] Change the setter of AttackBase.IsAiming to be public --- OpenRA.Mods.Common/Traits/Attack/AttackBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Attack/AttackBase.cs b/OpenRA.Mods.Common/Traits/Attack/AttackBase.cs index 31367b3b23..f835477bf7 100644 --- a/OpenRA.Mods.Common/Traits/Attack/AttackBase.cs +++ b/OpenRA.Mods.Common/Traits/Attack/AttackBase.cs @@ -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 Armaments { get { return getArmaments(); } } protected IFacing facing;