Really allow the chest to be null in cells.

This commit is contained in:
graywolf336 2014-02-21 12:15:44 -06:00
parent 95e9c7c50a
commit 295f6061a8

View File

@ -140,7 +140,9 @@ public class CellCreationSteps {
c.addAllSigns(cp.getSigns()); c.addAllSigns(cp.getSigns());
c.setTeleport(cp.getTeleportInSL()); c.setTeleport(cp.getTeleportInSL());
c.setChestLocation(cp.getChestLocation());
if(cp.getChestLocation() != null)
c.setChestLocation(cp.getChestLocation());
j.addCell(c, true); j.addCell(c, true);