
NullPointerException
Sultia opened this issue ยท 0 comments
Repeated NullPointerExceptions in this mod's death-event handler
more info:
at TRANSFORMER/[email protected]/
com.soytutta.mynethersdelight.common.events.CommonEvent
.livingDie(CommonEvent.java:265)
CommonEvent.livingDie also hooks into the same event and will throw if getSource() is null.
Please add the following:
if (event.getSource() == null) return;