From 664692cef92ce9446bf73cb8ed19e56961ab1428 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 6 Dec 2010 20:46:44 +1300 Subject: [PATCH] #398 c4 vs friendly buildings goes through the motions, but does nothing --- OpenRA.Mods.RA/Activities/Demolish.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/OpenRA.Mods.RA/Activities/Demolish.cs b/OpenRA.Mods.RA/Activities/Demolish.cs index 7330500da1..616ec96eaf 100644 --- a/OpenRA.Mods.RA/Activities/Demolish.cs +++ b/OpenRA.Mods.RA/Activities/Demolish.cs @@ -25,7 +25,6 @@ namespace OpenRA.Mods.RA.Activities { if (IsCanceled) return NextActivity; if (target == null || !target.IsInWorld || target.IsDead()) return NextActivity; - if (target.Owner == self.Owner) return NextActivity; if( !target.Trait().OccupiedCells().Any( x => x == self.Location ) ) return NextActivity;