From 0d51e5aa461e7a956bade611e9e0af117447c8f3 Mon Sep 17 00:00:00 2001 From: StevenRS11 Date: Thu, 30 May 2013 15:00:08 -0400 Subject: [PATCH] reimplemented fix --- StevenDimDoors/mod_pocketDim/dimHelper.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/StevenDimDoors/mod_pocketDim/dimHelper.java b/StevenDimDoors/mod_pocketDim/dimHelper.java index 5300aef..6158c8e 100644 --- a/StevenDimDoors/mod_pocketDim/dimHelper.java +++ b/StevenDimDoors/mod_pocketDim/dimHelper.java @@ -727,25 +727,25 @@ public class dimHelper extends DimensionManager if(orientation==0) { x=x+15; - //this.getWorld(incomingLink.destDimID).setSpawnLocation(x-1, y, z); + this.getWorld(incomingLink.destDimID).provider.setSpawnPoint(x-1, y, z); } else if(orientation==1) { z=z+15; - // this.getWorld(incomingLink.destDimID).setSpawnLocation(x, y, z-1); + this.getWorld(incomingLink.destDimID).provider.setSpawnPoint(x, y, z-1); } else if(orientation==2) { x=x-15; - // this.getWorld(incomingLink.destDimID).setSpawnLocation(x+1, y, z); + this.getWorld(incomingLink.destDimID).provider.setSpawnPoint(x+1, y, z); } else if(orientation==3) { z=z-15; - // this.getWorld(incomingLink.destDimID).setSpawnLocation(x, y, z+1); + this.getWorld(incomingLink.destDimID).provider.setSpawnPoint(x, y, z+1); } int searchRadius=19;