From 7332a8f79a394dd98eea33c383326d1385ef7a53 Mon Sep 17 00:00:00 2001 From: Bob Date: Tue, 20 Oct 2009 18:30:15 +1300 Subject: [PATCH] Fixed bullets --- OpenRa.Game/Graphics/Animation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRa.Game/Graphics/Animation.cs b/OpenRa.Game/Graphics/Animation.cs index 6e31358300..b7fd3d913c 100644 --- a/OpenRa.Game/Graphics/Animation.cs +++ b/OpenRa.Game/Graphics/Animation.cs @@ -11,7 +11,7 @@ namespace OpenRa.Game.Graphics public Animation( string name ) { - this.name = name; + this.name = name.ToLowerInvariant(); Play( "idle" ); }