Mixin Rule `mixin.features.fast_biome_colors` crashes unavoidably when set to `false`
alcatrazEscapee opened this issue ยท 1 comments
Version information
sodium-fabric-mc1.19.3-0.4.8+build.22
Reproduction Steps
- Add the following line to
.minecraft/config/sodium-mixins.properties
mixin.features.fast_biome_colors=false
- Attempt to join a world. The game will immediately crash upon attempting to render the world.
Crash Report file
Crash Report: crash-2023-01-18_12.27.40-client.txt
Full Log: latest.log
Additional information
This feature disables this MixinClientWorld
, which notably implements BiomeSeedProvider
on ClientWorld
.
This is then used independently of the fast_biome_colors
option, for instance in WorldSlice
, here:
This should probably be moved to it's own mixin, and one that isn't disabled by mixin.features.fast_biome_colors=false
. As the rest of this mixin actually pertains to the fast biome colors feature.
Fixed by d10e380