Physics Mod stops ClientPlayerNetworkEvent.Clone events from firing in Forge
When adding Physics Mod to a pack, the Forge onRespawn event doesn't get fired into other mods, specifically Death Stats Mod.
To Reproduce
- Install death stats and physics mod into 1.19.2 Forge instance.
- Cause the player to die.
- No event is received in the DeathStats.onRespawn event.
https://legacy.curseforge.com/minecraft/mc-mods/deathstats https://github.com/neilwightman/minecraft-deathstats/tree/1.19.2-forge-dev
This works when disabling the Phsyics Mod.
Minecraft Version: 1.19.2 Physics Mod Version: 2.12.3 Death Stats Version: 1.2.0
I am not sure why that happens. The event gets triggered in the ClientPacketListener class' function handleRespawn(ClientboundRespawnPacket p_105066_) but I am not touching that one at all.
I was wondering if you have something registered for the onRespawn client event and it maybe throwing an exception stopping others from being called.
I don't use any Forge events.