From 854dfcf47044b8c194313a0e399215f4056998af Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Wed, 5 May 2010 23:37:41 +1200 Subject: [PATCH] fix stupid bug in prev [and in release] --- OpenRA.Game/Effects/Bullet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Effects/Bullet.cs b/OpenRA.Game/Effects/Bullet.cs index 7630934168..7060fd793e 100755 --- a/OpenRA.Game/Effects/Bullet.cs +++ b/OpenRA.Game/Effects/Bullet.cs @@ -75,7 +75,7 @@ namespace OpenRA.Effects { t += 40; - anim.Tick(); + if (anim != null) anim.Tick(); if (t > TotalTime()) Explode( world );