From 05718664cf6778389d07f0b29ff61f9c262032c0 Mon Sep 17 00:00:00 2001 From: Incoming Date: Sat, 14 Mar 2015 13:43:33 -0400 Subject: [PATCH] Docile slime AI won't try to break your pull when you pull them --- code/modules/mob/living/carbon/slime/life.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/slime/life.dm b/code/modules/mob/living/carbon/slime/life.dm index 484f2700ae8..ddfe2867bc0 100644 --- a/code/modules/mob/living/carbon/slime/life.dm +++ b/code/modules/mob/living/carbon/slime/life.dm @@ -379,6 +379,8 @@ else if (holding_still) holding_still = max(holding_still - 1, 0) + else if (docile && pulledby) + holding_still = 10 else if(canmove && isturf(loc) && prob(33)) step(src, pick(cardinal)) else if(!AIproc)