diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2017-07-09 16:23:45 +0200 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2017-07-09 16:23:45 +0200 |
commit | 6ff1299467b0297b9e0bbeeae682cb1e8d3b472b (patch) | |
tree | 111019ebba697c60def18aa63ff4f69d2d9ef9a4 /src | |
parent | f657b3d0c6b136df16d4c5194d4b06f68823c128 (diff) | |
download | GT5-Unofficial-6ff1299467b0297b9e0bbeeae682cb1e8d3b472b.tar.gz GT5-Unofficial-6ff1299467b0297b9e0bbeeae682cb1e8d3b472b.tar.bz2 GT5-Unofficial-6ff1299467b0297b9e0bbeeae682cb1e8d3b472b.zip |
oil fix part 2
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/GT_UndergroundOil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_UndergroundOil.java b/src/main/java/gregtech/common/GT_UndergroundOil.java index f2d4af15c9..d9eda954c3 100644 --- a/src/main/java/gregtech/common/GT_UndergroundOil.java +++ b/src/main/java/gregtech/common/GT_UndergroundOil.java @@ -46,7 +46,7 @@ public class GT_UndergroundOil { } //GEN IT TO GET OBJECT... - XSTR tRandom = new XSTR( (aWorld.getSeed() + aWorld.provider.dimensionId * 2 + ((int)Math.floor((double)chunk.getChunkCoordIntPair().chunkXPos/(double)96)) + (7 * ((int)Math.floor((double)chunk.getChunkCoordIntPair().chunkZPos/96))))); + XSTR tRandom = new XSTR( (aWorld.getSeed() + aWorld.provider.dimensionId * 2 + ((int)Math.floor((double)chunk.getChunkCoordIntPair().chunkXPos/(double)6)) + (7 * ((int)Math.floor((double)chunk.getChunkCoordIntPair().chunkZPos/6))))); GT_UO_Fluid uoFluid = GT_Mod.gregtechproxy.mUndergroundOil.GetDimension(aWorld.provider.dimensionId).getRandomFluid(tRandom); //Fluid stack holder |