This commit is contained in:
Daniel Mills 2021-07-17 07:52:26 -04:00
parent cd353217d6
commit c2e1ecf5b1
2 changed files with 3 additions and 3 deletions

View File

@ -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'

View File

@ -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);
}); });
} }
} }