From 3530f71530ce6ea1ced9ca18cb3bc17a9f19b4e4 Mon Sep 17 00:00:00 2001 From: Leshana Date: Tue, 4 Apr 2017 19:16:39 -0400 Subject: [PATCH] Prevent pets from resisting out of being buckled to chairs. * Simple animals won't resist out of being buckled while idle. This lets them be buckled on shuttles etc. They still will resist out when they lock onto a target etc. --- code/modules/mob/living/simple_animal/simple_animal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index 1f1de9dc94..af20f04201 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -286,7 +286,7 @@ handle_idle_speaking() //Resisting out buckles - if(incapacitated(INCAPACITATION_BUCKLED_PARTIALLY)) + if(stance != STANCE_IDLE && incapacitated(INCAPACITATION_BUCKLED_PARTIALLY)) resist() //Resisting out of closets