diff options
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/GT_Worldgen_Stone.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_Worldgen_Stone.java b/src/main/java/gregtech/common/GT_Worldgen_Stone.java index ff56d573bc..110f1b3f17 100644 --- a/src/main/java/gregtech/common/GT_Worldgen_Stone.java +++ b/src/main/java/gregtech/common/GT_Worldgen_Stone.java @@ -67,7 +67,7 @@ public class GT_Worldgen_Stone if( !validStoneSeeds.containsKey(hash) ) { // Determine if RNG says to add stone at this chunk stoneRNG.setSeed((long)aWorld.getSeed() ^ hash + Math.abs(mBlockMeta) + Math.abs(mSize) + ((GregTech_API.sBlockGranites==mBlock)?(32768):(0))); //Don't judge me. Want different values for different block types - if ( (this.mProbability <= 1) || (stoneRNG.nextInt(this.mProbability*2) == 0) ) { // Decreased probability of stones by factor of 2 + if ( (this.mProbability <= 1) || (stoneRNG.nextInt(this.mProbability) == 0) ) { // Add stone at this chunk validStoneSeeds.put( hash, new StoneSeeds(true) ); // Add to generation list |