working on dungeon changes

This commit is contained in:
StevenRS11
2013-06-09 23:56:31 -04:00
parent 20122f956e
commit 4651be614e
5 changed files with 7 additions and 76 deletions

View File

@@ -288,7 +288,7 @@ public class dimHelper extends DimensionManager
if(entity instanceof EntityPlayerMP)
{
WorldServer.class.cast(newWorld).theChunkProviderServer.loadChunk(MathHelper.floor_double(entity.posX) >> 4, MathHelper.floor_double(entity.posZ) >> 4);
WorldServer.class.cast(newWorld).getChunkProvider().loadChunk(MathHelper.floor_double(entity.posX) >> 4, MathHelper.floor_double(entity.posZ) >> 4);
}
mod_pocketDim.teleporter.placeInPortal(entity, newWorld, link);
return entity;