mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-07-12 18:04:01 +00:00
Fabric fix color my b
This commit is contained in:
+5
-1
@@ -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
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user