Various Fixes #124

Merged
SenseiKiwi merged 8 commits from master into master 2014-01-06 04:16:28 +00:00
Showing only changes of commit a8c3dfb524 - Show all commits

View File

@@ -68,7 +68,7 @@ public class DungeonSchematic extends Schematic {
public Point3D getEntranceDoorLocation() public Point3D getEntranceDoorLocation()
{ {
return entranceDoorLocation.clone(); return (entranceDoorLocation != null) ? entranceDoorLocation.clone() : null;
} }
private DungeonSchematic() private DungeonSchematic()