Pets no longer instantly resist out of your grip when picked up (#92059)

## About The Pull Request

Closes #92034

## Changelog
🆑
fix: Pets no longer instantly resist out of your grip when picked up
/🆑
This commit is contained in:
SmArtKar
2025-07-11 08:11:52 +02:00
committed by GitHub
parent 899fe1b661
commit 1ca3d7e79f
@@ -15,7 +15,7 @@
controller.queue_behavior(/datum/ai_behavior/resist)
return SUBTREE_RETURN_FINISH_PLANNING
if (!isturf(living_pawn.loc) && !ismob(living_pawn.loc))
if (!isturf(living_pawn.loc) && !ismob(living_pawn.loc) && !istype(living_pawn.loc, /obj/item/mob_holder))
var/atom/contained_in = living_pawn.loc
var/attack_effective = FALSE
if (!pacifist)