Fix ores in air structures

This commit is contained in:
cyberpwn 2021-09-24 08:38:11 -04:00
parent bf2da499d6
commit 0d356514f2

View File

@ -48,10 +48,10 @@ public class ModeOverworld extends IrisEngineMode implements EngineMode {
(x, z, k, p, m) -> biome.actuate(x, z, p, m)
));
registerStage((x, z, k, p, m) -> cave.modify(x >> 4, z >> 4, k, m));
registerStage((x, z, k, p, m) -> deposit.modify(x, z, k, m));
registerStage(burst(
(x, z, k, p, m) -> decorant.actuate(x, z, k, m),
(x, z, k, p, m) -> post.modify(x, z, k, m),
(x, z, k, p, m) -> deposit.modify(x, z, k, m),
(x, z, K, p, m) -> getMantle().insertMatter(x >> 4, z >> 4, BlockData.class, K, m)
));
registerStage((x, z, k, p, m) -> perfection.modify(x, z, k, m));