Fix heavy oil gen without messing everything up
This commit is contained in:
parent
b9d9706727
commit
9e7f34a12f
1 changed files with 2 additions and 1 deletions
|
@ -1508,8 +1508,9 @@ public class GT_Utility {
|
||||||
|
|
||||||
|
|
||||||
Random tRandom = new Random((aWorld.getSeed() + (aX / 96) + (7 * (aZ / 96))));
|
Random tRandom = new Random((aWorld.getSeed() + (aX / 96) + (7 * (aZ / 96))));
|
||||||
int oil = tRandom.nextInt(4);
|
int oil = tRandom.nextInt(3);
|
||||||
double amount = tRandom.nextInt(50) + tRandom.nextDouble();
|
double amount = tRandom.nextInt(50) + tRandom.nextDouble();
|
||||||
|
oil = tRandom.nextInt(4);
|
||||||
// System.out.println("Oil: "+(aX/96)+" "+(aZ/96)+" "+oil+" "+amount);
|
// System.out.println("Oil: "+(aX/96)+" "+(aZ/96)+" "+oil+" "+amount);
|
||||||
// amount = 40;
|
// amount = 40;
|
||||||
Fluid tFluid = null;
|
Fluid tFluid = null;
|
||||||
|
|
Loading…
Reference in a new issue