From 181afe96407941c923450d22d7c8fe0acb3f2c3f Mon Sep 17 00:00:00 2001 From: oranges Date: Wed, 13 Dec 2017 10:57:24 +1300 Subject: [PATCH] Fixes the free worker bee getting stuck in the hive and never leaving (#33451) ten outta ten code --- code/modules/hydroponics/beekeeping/beebox.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/beekeeping/beebox.dm b/code/modules/hydroponics/beekeeping/beebox.dm index 4bf76a1a46..482a48edfd 100644 --- a/code/modules/hydroponics/beekeeping/beebox.dm +++ b/code/modules/hydroponics/beekeeping/beebox.dm @@ -102,7 +102,7 @@ if((bee_resources >= BEE_RESOURCE_NEW_BEE_COST && prob(BEE_PROB_NEW_BEE)) || freebee) if(!freebee) bee_resources = max(bee_resources - BEE_RESOURCE_NEW_BEE_COST, 0) - var/mob/living/simple_animal/hostile/poison/bees/B = new(src) + var/mob/living/simple_animal/hostile/poison/bees/B = new(get_turf(src)) B.beehome = src B.assign_reagent(queen_bee.beegent) bees += B