aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2017-09-30 21:38:14 +0200
committerTechnus <daniel112092@gmail.com>2017-10-08 09:36:08 +0200
commit621a8c21271056182a95b75a3d6e883a6d9b4a36 (patch)
treef3cf1e6aca6c125d1203c52335e8b2d0f98ea84c
parente9b9841481c94606c786c4e911edfb6d42cdee4f (diff)
downloadGT5-Unofficial-621a8c21271056182a95b75a3d6e883a6d9b4a36.tar.gz
GT5-Unofficial-621a8c21271056182a95b75a3d6e883a6d9b4a36.tar.bz2
GT5-Unofficial-621a8c21271056182a95b75a3d6e883a6d9b4a36.zip
update gt5u
-rw-r--r--build.properties4
-rw-r--r--src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_MultiblockBase_EM.java5
2 files changed, 3 insertions, 6 deletions
diff --git a/build.properties b/build.properties
index 0635e9681a..b2fa89c4d4 100644
--- a/build.properties
+++ b/build.properties
@@ -6,8 +6,8 @@ ic2.version=2.2.790-experimental
codechickenlib.version=1.1.3.140
codechickencore.version=1.0.7.47
nei.version=1.0.5.120
-gregtech.jenkinsbuild=851
-gregtech.version=5.09.32.04
+gregtech.jenkinsbuild=856
+gregtech.version=5.09.32.05
cofhcore.cf=2246/920
cofhcore.version=[1.7.10]3.0.3-303-dev
cofhlib.cf=2246/918
diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_MultiblockBase_EM.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_MultiblockBase_EM.java
index 2c99e1a5d9..7526063046 100644
--- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_MultiblockBase_EM.java
+++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_MultiblockBase_EM.java
@@ -205,10 +205,7 @@ public abstract class GT_MetaTileEntity_MultiblockBase_EM extends GT_MetaTileEnt
protected boolean areChunksAroundLoaded_EM(){
if(isValidMetaTileEntity(this) && getBaseMetaTileEntity().isServerSide()){
IGregTechTileEntity base=getBaseMetaTileEntity();
- final int x=base.getXCoord();
- final int y=base.getYCoord();
- final int z=base.getZCoord();
- return base.getWorld().checkChunksExist(x-48,y-48,z-48,x+48,y+48,z+48);
+ return base.getWorld().doChunksNearChunkExist(base.getXCoord(),base.getYCoord(),base.getZCoord(),3);
//todo check if it is actually checking if chunks are loaded
}else return false;
}