Added dungeons and fixed monolith placement bug

This commit is contained in:
StevenRS11
2013-07-18 01:20:12 -04:00
parent 3654c10af1
commit c0ac76cdfe
5 changed files with 5 additions and 1 deletions

View File

@@ -115,7 +115,7 @@ public class CommonTickHandler implements ITickHandler
blockID = worldObj.getBlockId(x, y, z);
}
while(blockID == mod_pocketDim.blockDimWall.blockID&&y>0)
while((blockID == mod_pocketDim.blockDimWall.blockID||blockID == mod_pocketDim.blockDimWallPerm.blockID)&&y>0)
{
y--;
blockID = worldObj.getBlockId(x, y, z);