From b4789f465d2c4ddc1907f97a42e7a0cb0d4098cf Mon Sep 17 00:00:00 2001 From: Ben10083 Date: Sat, 29 Jul 2023 11:56:43 -0400 Subject: [PATCH] Refactory how this whole thing is (lol) --- code/modules/mob/living/carbon/xenomorph/xeno_defines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_defines.dm b/code/modules/mob/living/carbon/xenomorph/xeno_defines.dm index 03a7312380be..33e9a29ea9a9 100644 --- a/code/modules/mob/living/carbon/xenomorph/xeno_defines.dm +++ b/code/modules/mob/living/carbon/xenomorph/xeno_defines.dm @@ -1050,7 +1050,7 @@ hugger.timeofdeath = user.timeofdeath // Keep old death time /datum/hive_status/proc/update_lesser_drone_limit() - lesser_drone_limit = max(Ceiling(length(totalXenos) / 3), lesser_drone_minimum) + lesser_drone_limit = lesser_drone_minimum + Ceiling(length(totalXenos) / 3) /datum/hive_status/proc/can_spawn_as_lesser_drone(mob/dead/observer/user) if(!GLOB.hive_datum || ! GLOB.hive_datum[hivenumber])