From fd58c9ae9aaa1255606937694a55748b0a4e63ab Mon Sep 17 00:00:00 2001 From: zzzmike <85382350+zzzmike@users.noreply.github.com> Date: Wed, 5 Jun 2024 23:45:24 -0700 Subject: [PATCH] test --- code/modules/cm_aliens/structures/egg.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/cm_aliens/structures/egg.dm b/code/modules/cm_aliens/structures/egg.dm index ae5762b28ca2..4a2b15098a12 100644 --- a/code/modules/cm_aliens/structures/egg.dm +++ b/code/modules/cm_aliens/structures/egg.dm @@ -56,7 +56,10 @@ if(isxeno(user) && status == EGG_GROWN) . += "Ctrl + Click egg to retrieve child into your empty hand if you can carry it." if(isobserver(user) && status == EGG_GROWN) - #include "code\modules\mob\living\carbon\xenomorph\hive_status.dm" + var/current_hugger_count = 0 + for(var/mob/mob as anything in totalXenos) + if(isfacehugger(mob)) + current_hugger_count++ var/datum/hive_status/hive = GLOB.hive_datum[hivenumber] . += "Current facehugger limit: [hive.current_hugger_count]/[hive.playable_hugger_limit]"