mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
V+
This commit is contained in:
parent
cd353217d6
commit
c2e1ecf5b1
@ -5,7 +5,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group 'com.volmit.iris'
|
group 'com.volmit.iris'
|
||||||
version '1.5'
|
version '1.5.1'
|
||||||
def apiVersion = '1.17'
|
def apiVersion = '1.17'
|
||||||
def name = 'Iris'
|
def name = 'Iris'
|
||||||
def main = 'com.volmit.iris.Iris'
|
def main = 'com.volmit.iris.Iris'
|
||||||
|
@ -281,12 +281,12 @@ public class Pregenerator implements Listener {
|
|||||||
if(c == null)
|
if(c == null)
|
||||||
{
|
{
|
||||||
draw(((x << 5) + i), ((z << 5) + j), COLOR_ERROR);
|
draw(((x << 5) + i), ((z << 5) + j), COLOR_ERROR);
|
||||||
Iris.warn("Caught Ungenerated Chunk @ " + ((x << 5) + i) + ", " + ((z << 5) + j) + " Regenerating before flush, CHECK THIS CHUNK IN THE OVERWORLD TO MAKE SURE WE FIXED IT!");
|
|
||||||
int finalI = i;
|
int finalI = i;
|
||||||
int finalJ = j;
|
int finalJ = j;
|
||||||
requeue.add(() -> {
|
requeue.add(() -> {
|
||||||
|
draw(((x << 5) + finalI), ((z << 5) + finalJ), COLOR_MCA_GENERATE);
|
||||||
access.directWriteChunk(world, ((x << 5) + finalI), ((z << 5) + finalJ), directWriter);
|
access.directWriteChunk(world, ((x << 5) + finalI), ((z << 5) + finalJ), directWriter);
|
||||||
draw(((x << 5) + finalI), ((z << 5) + finalJ), COLOR_MCA_GENERATED);
|
draw(((x << 5) + finalI), ((z << 5) + finalJ), COLOR_MCA_GENERATED_MCA);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user