Crashing when you join a server
timothytay opened this issue ยท 3 comments
Reproduction steps:
- Attempt to join a server with sodium and fabric
- It crashes
I have tested and concluded that this is not a server issue as I am able to join normally with vanilla and Optifine.
Please do not post edited or incomplete crash logs. The list of installed Fabric mods and resource packs have been removed from the crash log. I am going to assume this was done intentionally, and I am closing this issue as invalid. If you can provide a complete crash log with only Sodium installed the issue will be re-opened.
Note that the modlist is actually added by Fabric API, not loader, and Sodium doesn't require it, so it may still be a legit report. It is added by the fabric-crash-report-info-v1
module.
It seems it's caused by this line (if no mods mixed in here)
float f = MathHelper.lerp(tickDelta, this.client.player.lastNauseaStrength, this.client.player.nextNauseaStrength) * this.client.options.distortionEffectScale * this.client.options.distortionEffectScale;
this.client
and this.client.options
are both not null as that would have caused an NPE earlier. So I'm guessing this.client.player
is null
.