Fixed ID Mapping in DungeonSchematic

Fixed issue with DungeonSchematic not standardizing the block IDs for
transient doors.
This commit is contained in:
SenseiKiwi 2014-01-14 07:22:51 -04:00
parent 75db61e951
commit 5df79bb206

View file

@ -167,6 +167,7 @@ public class DungeonSchematic extends Schematic {
mapping.put((short) properties.PermaFabricBlockID, STANDARD_ETERNAL_FABRIC_ID);
mapping.put((short) properties.WarpDoorID, STANDARD_WARP_DOOR_ID);
mapping.put((short) properties.DimensionalDoorID, STANDARD_DIMENSIONAL_DOOR_ID);
mapping.put((short) properties.TransientDoorID, STANDARD_TRANSIENT_DOOR_ID);
return mapping;
}