nullcheck obtained entity entries (#1206, 1207)
No idea what's going on here but aight
This commit is contained in:
parent
27e41e2e77
commit
8be8cc30b9
4 changed files with 5 additions and 3 deletions
|
@ -318,7 +318,7 @@ public class GenericHandler {
|
|||
@SubscribeEvent
|
||||
public static void onTeleposeEntity(TeleposeEvent.Ent event) {
|
||||
EntityEntry entry = EntityRegistry.getEntry(event.entity.getClass());
|
||||
if (BloodMagicAPI.INSTANCE.getBlacklist().getTeleposerEntities().contains(entry.getRegistryName()))
|
||||
if (entry != null && BloodMagicAPI.INSTANCE.getBlacklist().getTeleposerEntities().contains(entry.getRegistryName()))
|
||||
event.setCanceled(true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue