9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 18:49:06 +00:00

Fix update

This commit is contained in:
cyberpwn
2021-08-17 00:19:12 -04:00
parent ff05429f58
commit d79af8fcc2

View File

@@ -423,8 +423,16 @@ public class IrisEngine extends BlockPopulator implements Engine {
@ChunkCoordinates
@Override
public void populate(World world, Random random, Chunk c) {
updateChunk(c);
placeTiles(c);
try
{
updateChunk(c);
placeTiles(c);
}
catch(Throwable e)
{
e.printStackTrace();
}
}
@Override