diff --git a/OpenRA.Game/Traits/Bridge.cs b/OpenRA.Game/Traits/Bridge.cs index f9a630a5b8..95ecacb038 100644 --- a/OpenRA.Game/Traits/Bridge.cs +++ b/OpenRA.Game/Traits/Bridge.cs @@ -134,12 +134,12 @@ namespace OpenRA.Traits Templates[state].TerrainType[Tiles[p]]); } - bool IsIntact(Bridge b) + static bool IsIntact(Bridge b) { return b != null && b.self.IsInWorld && b.self.Health > 0; } - bool IsLong(Bridge b) + static bool IsLong(Bridge b) { return b != null && b.self.IsInWorld && b.self.Info.Traits.Get().Long; }