From f7ab6256c8ed4cbba10d9214ae1c1f372cc417ff Mon Sep 17 00:00:00 2001 From: JJRcop Date: Thu, 14 Sep 2017 11:34:51 -0400 Subject: [PATCH] Change loc = to forceMove in bees.dm --- code/modules/mob/living/simple_animal/hostile/bees.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/bees.dm b/code/modules/mob/living/simple_animal/hostile/bees.dm index 3a523454d21..f2d29d3660f 100644 --- a/code/modules/mob/living/simple_animal/hostile/bees.dm +++ b/code/modules/mob/living/simple_animal/hostile/bees.dm @@ -131,7 +131,7 @@ else if(istype(target, /obj/structure/beebox)) if(target == beehome) var/obj/structure/beebox/BB = target - loc = BB + forceMove(BB) target = null wanted_objects -= typecacheof(/obj/structure/beebox) //so we don't attack beeboxes when not going home return //no don't attack the goddamm box @@ -187,7 +187,7 @@ if(loc == beehome) idle = min(100, ++idle) if(idle >= BEE_IDLE_ROAMING && prob(BEE_PROB_GOROAM)) - loc = get_turf(beehome) + forceMove(get_turf(beehome)) else idle = max(0, --idle) if(idle <= BEE_IDLE_GOHOME && prob(BEE_PROB_GOHOME))