diff --git a/OpenRA.Game/Traits/Health.cs b/OpenRA.Game/Traits/Health.cs index 432157094c..3016aece4b 100755 --- a/OpenRA.Game/Traits/Health.cs +++ b/OpenRA.Game/Traits/Health.cs @@ -41,7 +41,7 @@ namespace OpenRA.Traits } public int HP { get { return hp; } } - public readonly int MaxHP; + public int MaxHP; public bool IsDead { get { return hp <= 0; } } public bool RemoveOnDeath = true;