mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
Fix async spawn issue on spigot
This commit is contained in:
parent
7f6fec5530
commit
4e131d9a54
@ -241,7 +241,15 @@ public class IrisWorldManager extends EngineAssignedWorldManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
spawn(c, v);
|
try
|
||||||
|
{
|
||||||
|
spawn(c, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
catch(Throwable e)
|
||||||
|
{
|
||||||
|
J.s(() -> spawn(c, v));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//@done
|
//@done
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ public enum NoiseStyle {
|
|||||||
|
|
||||||
@Desc("Clover Noise")
|
@Desc("Clover Noise")
|
||||||
CLOVER(rng -> new CNG(rng, NoiseType.CLOVER, 1D, 1).scale(0.06).bake()),
|
CLOVER(rng -> new CNG(rng, NoiseType.CLOVER, 1D, 1).scale(0.06).bake()),
|
||||||
|
|
||||||
@Desc("CLOVER noise creates the same noise level for cells, changes noise level on cell borders.")
|
@Desc("CLOVER noise creates the same noise level for cells, changes noise level on cell borders.")
|
||||||
CLOVER_STARCAST_3(rng -> new CNG(rng, NoiseType.CLOVER_STARCAST_3, 1D, 1)),
|
CLOVER_STARCAST_3(rng -> new CNG(rng, NoiseType.CLOVER_STARCAST_3, 1D, 1)),
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user