diff --git a/OpenRa.Game/GameRules/TechTree.cs b/OpenRa.Game/GameRules/TechTree.cs index dcdfd3c348..4a697e0415 100755 --- a/OpenRa.Game/GameRules/TechTree.cs +++ b/OpenRa.Game/GameRules/TechTree.cs @@ -63,9 +63,9 @@ namespace OpenRa.Game.GameRules public IEnumerable UnitBuiltAt( UnitInfo info ) { if( info.BuiltAt.Length != 0 ) - return info.BuiltAt; + return info.BuiltAt.Select( x => x.ToLowerInvariant() ); else - return producesIndex[ Rules.UnitCategory[ info.Name ] ].Select( x => x.Name ); + return producesIndex[ Rules.UnitCategory[ info.Name ] ].Select( x => x.Name.ToLowerInvariant() ); } } }