From bbd30fb97075997c922bd712d0f9d4387e66eb40 Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Mon, 21 Mar 2016 05:38:53 +0000 Subject: [PATCH] fixes typo that prevented bees from starting to grow naturally. --- 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 508806a6e15..7b0bdca1cda 100644 --- a/code/modules/hydroponics/beekeeping/beebox.dm +++ b/code/modules/hydroponics/beekeeping/beebox.dm @@ -95,7 +95,7 @@ if(bees.len < get_max_bees()) var/freebee = FALSE //a freebee, geddit?, hahaha HAHAHAHA - if(!bees.len) //there's always one set of worker bees, this isn't colony collapse disorder its 2d spessmen + if(bees.len <= 1) //there's always one set of worker bees, this isn't colony collapse disorder its 2d spessmen freebee = TRUE if((bee_resources >= BEE_RESOURCE_NEW_BEE_COST && prob(BEE_PROB_NEW_BEE)) || freebee) if(!freebee)