mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Fix update
This commit is contained in:
parent
ff05429f58
commit
d79af8fcc2
@ -423,10 +423,18 @@ public class IrisEngine extends BlockPopulator implements Engine {
|
|||||||
@ChunkCoordinates
|
@ChunkCoordinates
|
||||||
@Override
|
@Override
|
||||||
public void populate(World world, Random random, Chunk c) {
|
public void populate(World world, Random random, Chunk c) {
|
||||||
|
try
|
||||||
|
{
|
||||||
updateChunk(c);
|
updateChunk(c);
|
||||||
placeTiles(c);
|
placeTiles(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
catch(Throwable e)
|
||||||
|
{
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void fail(String error, Throwable e) {
|
public void fail(String error, Throwable e) {
|
||||||
failing = true;
|
failing = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user