You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Essentially, it seems Auditory is missing a check for itemStack != null before calling itemStack.getItem() in this mixin method. The issue with this is that in the original EntityType#spawn() method, itemStack is marked as @Nullable, meaning its not always expected to be non-null. So, Auditory crashes if null is passed by another mod into this parameter.
This issue was originally opened on The Aether's repository here: The-Aether-Team/The-Aether#1831.
Essentially, it seems Auditory is missing a check for
itemStack != nullbefore callingitemStack.getItem()in this mixin method. The issue with this is that in the originalEntityType#spawn()method,itemStackis marked as@Nullable, meaning its not always expected to be non-null. So, Auditory crashes if null is passed by another mod into this parameter.