From 7bf1a91751f99259b366e097e839bd2d7875a61b Mon Sep 17 00:00:00 2001 From: zzzmike <85382350+zzzmike@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:35:43 -0700 Subject: [PATCH] revert --- code/modules/mob/living/carbon/xenomorph/hive_status.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status.dm b/code/modules/mob/living/carbon/xenomorph/hive_status.dm index 6503c3500cf5..e7e1fab0dd45 100644 --- a/code/modules/mob/living/carbon/xenomorph/hive_status.dm +++ b/code/modules/mob/living/carbon/xenomorph/hive_status.dm @@ -1,7 +1,3 @@ -var/current_hugger_count = 0 -/// How many huggers can the hive support -var/playable_hugger_limit = 0 - /datum/hive_status var/name = "Normal Hive" @@ -118,6 +114,8 @@ var/playable_hugger_limit = 0 //Joining as Facehugger vars /// When can huggers join the round var/hugger_timelock = 15 MINUTES + /// How many huggers can the hive support + var/playable_hugger_limit = 0 /// Minimum number of huggers available at any hive size var/playable_hugger_minimum = 2 /// This number divides the total xenos counted for slots to give the max number of facehuggers @@ -860,6 +858,7 @@ var/playable_hugger_limit = 0 update_hugger_limit() + var/current_hugger_count = 0 for(var/mob/mob as anything in totalXenos) if(isfacehugger(mob)) current_hugger_count++