Mutant Beasts

Mutant Beasts

15M Downloads

[Crash] NullPointerException caused by Endersoul Fragment ticking.

Vaelzan opened this issue ยท 1 comments

commented

if (!this.world.isRemote && this.getDistanceSq(this.collector) > 9.0D) {

The referenced line of code above can cause a crash as directly above it you potentially set this.collector to be null, causing an immediate NullPointerException as it tries to use this.collector as a parameter to getDistanceSq directly afterwards.

See: https://pastebin.com/qSytUy7h for an example of the crash.

commented

Fixed.