mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-07-25 00:00:33 +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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user