
[1.18.1 Fabric] Crashes at init with other mods such as Bumblezone
TelepathicGrunt opened this issue ยท 1 comments
I have received this issue report on my bumblezone mod: TelepathicGrunt/Bumblezone-Quilt#37
After looking at the stacktrace, it seems the issue comes down to this mixin from Direbats.
https://github.com/andantet/direbats/blob/fabric/1.18/src/main/java/net/teamhollow/direbats/mixin/DefaultBiomeFeaturesMixin.java
Basically, the mixin is firing at game startup but so early that Fabric API and minecraft does not have all of its data/fields setup and so with certain mod combinations, Direbat's classloading causes issues or crashes as seen here.
The big problem is this mixin is not the correct way to add mobs to biomes as well. Instead, BiomeModification API from Fabric API should be used instead. Example:
BiomeModifications.addSpawn(
BiomeSelectors.categories(Biome.BiomeCategory.NETHER)
.or(BiomeSelectors.categories(Biome.BiomeCategory.THEEND)
.or(BiomeSelectors.categories(Biome.BiomeCategory.NONE))),
MobCategory.MONSTER,
EntityType.CREEPER,
100,
1,
4
);
The benefit of this API way of adding to biomes is you have better control of which biome can spawn the mob, it works for datapack biomes, and does not cause any weird issues with classloading stuff too early before it is ready for usage. Much better mod compat and will now work with popular worldgen datapacks like Terralith.