Fixed minor bug

Fixed a bug with an uninitialized variable in DungeonHelper. Oops!
This commit is contained in:
SenseiKiwi 2013-06-16 01:30:13 -04:00
parent d2259c3f5d
commit 8e200da01b

View file

@ -88,6 +88,7 @@ public class DungeonHelper
}
//Add all the basic dungeon types to dungeonTypeMapping
dungeonTypeMapping = new Hashtable<String, ArrayList<DungeonGenerator>>();
dungeonTypeMapping.put(SIMPLE_HALL_DUNGEON_TYPE, simpleHalls);
dungeonTypeMapping.put(COMPLEX_HALL_DUNGEON_TYPE, complexHalls);
dungeonTypeMapping.put(HUB_DUNGEON_TYPE, hubs);