Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzmike authored Jun 6, 2024
1 parent 5e37880 commit d6cd6be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/cm_aliens/structures/egg.dm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
. += "Ctrl + Click egg to retrieve child into your empty hand if you can carry it."
if(isobserver(user) && status == EGG_GROWN)
var/datum/hive_status/hive = GLOB.hive_datum[XENO_HIVE_NORMAL]
. += "Current facehugger limit: <b>[hive.current_hugger_count]/[hive.playable_hugger_limit]</b>"
var/current_hugger_count = get_current_facehugger_count();
. += "Current facehugger limit: <b>[current_hugger_count]/[hive.playable_hugger_limit]</b>"

/obj/effect/alien/egg/attack_alien(mob/living/carbon/xenomorph/M)
if(status == EGG_BURST || status == EGG_DESTROYED)
Expand Down

0 comments on commit d6cd6be

Please sign in to comment.