Fabric fix color my b

This commit is contained in:
Brian Neumann-Fopiano
2026-07-04 17:42:50 -04:00
parent d1cc83a40b
commit 6b64624233
2 changed files with 6 additions and 1 deletions
@@ -750,7 +750,11 @@ public class NMSBinding implements INMSBinding {
chunk.setNoiseBiome(x, y, z, getCustomBiomeRegistry().get(b.getBiomeId()).get());
c.getAndIncrement();
} else {
chunk.setNoiseBiome(x, y, z, (Holder<net.minecraft.world.level.biome.Biome>) getBiomeBase(e.getWorld(), b.getBiome()));
chunk.setNoiseBiome(x, y, z, getCustomBiomeRegistry()
.get(net.minecraft.resources.Identifier.parse(b.getBiomeKey()))
.orElseGet(() -> getCustomBiomeRegistry()
.get(net.minecraft.resources.Identifier.parse("minecraft:plains"))
.orElseThrow()));
r.getAndIncrement();
}
}
@@ -90,6 +90,7 @@ public class ModeOverworld extends IrisEngineMode implements EngineMode {
};
registerStage(burst(
sBiome,
sGenMatter,
sTerrain
));