More Babies (Forge & Fabric)

More Babies (Forge & Fabric)

3M Downloads

Crash with Physics Mod installed

haubna opened this issue ยท 1 comments

commented

Crash caused by this mixin failing: https://github.com/mammut53/more-babies/blob/master/Common/src/main/java/com/github/mammut53/more_babies/mixin/world/entity/monster/BlazeMixin.java

Physics mod mixin for blazes

@Mixin(Blaze.class)
public class MixinBlaze {
	
    @Redirect(method = "aiStep", at = @At(value = "INVOKE", target = "Lnet/minecraft/world/level/Level;addParticle(Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V"))
    private void addParticle(Level level, ParticleOptions options, double x, double y, double z, double vx, double vy, double vz) {
        if (!SmokeHelper.addParticle(level, x, y, z, ConfigClient.smokeBlaze)) {
            level.addParticle(options, x, y, z, vx, vy, vz);
        }
    }

}

Solution would be to either set require = -1 (might need required = false in mixins config) or to increase your priority to let my mixin fail since my mod doesn't force a crash when a mixin fails.

commented

Can confirm. With physics mod and more babies installed, Minecraft refuses to Launch from the Minecraft launcher. However, still shows up In the Task Manager as JDK platform Binary. but, the Minecraft window never opens. Unfortunately, I do not have a Crash log For you.