diff --git a/OpenRA.Mods.Common/Traits/Render/WithTurret.cs b/OpenRA.Mods.Common/Traits/Render/WithTurret.cs index 8ff1251a6e..2259e1aa3e 100644 --- a/OpenRA.Mods.Common/Traits/Render/WithTurret.cs +++ b/OpenRA.Mods.Common/Traits/Render/WithTurret.cs @@ -58,11 +58,11 @@ namespace OpenRA.Mods.Common.Traits public class WithTurret : UpgradableTrait, ITick, INotifyDamageStateChanged { - RenderSprites rs; - IBodyOrientation body; - AttackBase ab; - Turreted t; - Armament[] arms; + readonly RenderSprites rs; + readonly IBodyOrientation body; + readonly AttackBase ab; + readonly Turreted t; + readonly Armament[] arms; public readonly Animation DefaultAnimation; public WithTurret(Actor self, WithTurretInfo info)