# HG changeset patch # User IBBoard # Date 1261666652 0 # Node ID f5009a00a50d4c5cbdf6cfff023fce2b91bc5bbe # Parent d1c90159547a5a901b8d23428189bd9904868959 Re #236: Handle null game system in race * Fix error message text no-open-ticket diff -r d1c90159547a -r f5009a00a50d api/Factories/Xml/WarFoundryXmlRaceFactory.cs --- a/api/Factories/Xml/WarFoundryXmlRaceFactory.cs Thu Dec 24 14:54:43 2009 +0000 +++ b/api/Factories/Xml/WarFoundryXmlRaceFactory.cs Thu Dec 24 14:57:32 2009 +0000 @@ -49,7 +49,7 @@ if (gameSystem == null) { - throw new InvalidFileException("Referenced game system, "+systemID+" did not exist"); + throw new InvalidFileException("Referenced game system, '"+systemID+"', did not exist"); } Race race = new Race(id, subid, name, gameSystem, mainFactory);