Fixes FS-314

This commit is contained in:
Video 2022-11-04 22:58:36 -06:00
parent af710edc88
commit 3b61ba408f

View File

@ -163,12 +163,9 @@ public class EventBlocker extends FreedomService
if (ConfigEntry.ENABLE_PET_PROTECT.getBoolean())
{
Entity entity = event.getEntity();
if (entity instanceof Tameable)
if (entity instanceof Tameable tameable && tameable.isTamed())
{
if (((Tameable) entity).isTamed())
{
event.setCancelled(true);
}
event.setCancelled(true);
}
}
}