Added gold dim doors, fixes

Deleted the sun and adding gold dim doors
This commit is contained in:
StevenRS11
2013-09-10 04:32:19 -04:00
parent 79349e9add
commit 52aa836f75
24 changed files with 707 additions and 210 deletions

View File

@@ -154,7 +154,8 @@ public class DDTeleporter
//Check if the block below that point is actually a door
int blockID = world.getBlockId(door.getX(), door.getY() - 1, door.getZ());
if (blockID != properties.DimensionalDoorID && blockID != properties.WarpDoorID &&
blockID != properties.TransientDoorID && blockID != properties.UnstableDoorID)
blockID != properties.TransientDoorID && blockID != properties.UnstableDoorID
&& blockID != properties.GoldDimDoorID)
{
//Return the pocket's orientation instead
return PocketManager.getDimensionData(door.getDimension()).orientation();