9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-30 20:39:21 +00:00

Fix text renderer

This commit is contained in:
Daniel Mills
2020-08-31 16:20:24 -04:00
parent 57cb8d5bda
commit 8c0cbfe93a
2 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,5 @@
package com.volmit.iris.object;
import com.volmit.iris.Iris;
import com.volmit.iris.gen.ParallaxChunkGenerator;
import com.volmit.iris.gen.atomics.AtomicCache;
import com.volmit.iris.util.ArrayType;
@@ -107,16 +106,16 @@ public class IrisTextPlacement
return m;
}
public void place(ParallaxChunkGenerator g, RNG rngf, int x, int z)
public void place(ParallaxChunkGenerator g, RNG rng, int x, int z)
{
RNG rngg = rngf.nextParallelRNG(x).nextParallelRNG(z);
for(int i = 0; i < getConfig().getTriesForChunk(rngg); i++)
int tr = getConfig().getTriesForChunk(rng);
for(int i = 0; i < tr; i++)
{
RNG rng = rngg.nextParallelRNG((i * 3 + 8) - 23040);
rng = rng.nextParallelRNG((i * 3 + 8) - 23040);
int xb = (x * 16) + rng.nextInt(16);
int zb = (z * 16) + rng.nextInt(16);
Iris.info("Placing at " + xb + " " + zb);
getRender().get(rng.nextInt(getRender().size())).place(g, rngg, getConfig(), xb, zb);
getRender().get(rng.nextInt(getRender().size())).place(g, rng, getConfig(), xb, zb);
}
}
}