From 503eb679cc53efca43561dec46171ab0d7baa877 Mon Sep 17 00:00:00 2001 From: GinjaNinja32 Date: Mon, 9 Feb 2015 13:32:42 +0000 Subject: [PATCH] Fixes pAIs being spammed with "You are too small to pull that." when being pulled --- code/modules/mob/living/living.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index b9f898ab5dc..25fa8d56862 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -432,7 +432,8 @@ step(pulling, get_dir(pulling.loc, T)) - M.start_pulling(t) + if(t) + M.start_pulling(t) else if (pulling) if (istype(pulling, /obj/structure/window))