Fix bug in indexing the color classes map.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@993 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Mike Thomas
2010-08-19 22:43:29 +00:00
parent 52ca22c53a
commit 753bcb229e
@@ -201,7 +201,7 @@ public class ColorPository
{
var pos :ColorPository = new ColorPository();
for each (var classXml :XML in xml.elements("class")) {
pos._classes.put(classXml.@classId, ClassRecord.fromXml(classXml));
pos._classes.put(int(classXml.@classId), ClassRecord.fromXml(classXml));
}
return pos;