Merge pull request #179 from SenseiKiwi/master
Fixed Crash on Rift Removal
This commit is contained in:
commit
60bc8090f2
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ public class TileEntityRift extends DDTileEntityBase
|
|||
}
|
||||
}
|
||||
}
|
||||
if (closeTimer >= CLOSING_PERIOD)
|
||||
if (closeTimer >= CLOSING_PERIOD && !worldObj.isRemote)
|
||||
{
|
||||
DimLink link = PocketManager.getLink(this.xCoord, this.yCoord, this.zCoord, worldObj);
|
||||
if (link != null)
|
||||
|
|
Loading…
Add table
Reference in a new issue