From cc910b9b7b4b322e9688489894a6a16bcd4d1ce6 Mon Sep 17 00:00:00 2001 From: Jacob M Date: Wed, 11 Mar 2026 17:29:03 -0400 Subject: [PATCH] removed redundant wolf agro fix --- Minecraft.World/Wolf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.World/Wolf.cpp b/Minecraft.World/Wolf.cpp index e16ff217d..7588a67b0 100644 --- a/Minecraft.World/Wolf.cpp +++ b/Minecraft.World/Wolf.cpp @@ -286,7 +286,7 @@ bool Wolf::hurt(DamageSource *source, float dmg) if (isTame()) { shared_ptr entity = source->getDirectEntity(); - if (entity != nullptr && entity->instanceof(eTYPE_PLAYER) && !entity->isInvulnerable()) + if (entity != nullptr && entity->instanceof(eTYPE_PLAYER)) { shared_ptr attacker = dynamic_pointer_cast(entity); attacker->canHarmPlayer(getOwnerUUID());