From 2829b0229b47fcdb4a38b6327bacdd6b5778428c Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sat, 27 Mar 2010 09:35:47 +1300 Subject: [PATCH] hmmn.. --- OpenRA.Game/Traits/Bridge.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }