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 fd58c9a commit 53a613c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions code/modules/cm_aliens/structures/special/egg_morpher.dm
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,12 @@
if(isxeno(user) || isobserver(user))
. += "It has [stored_huggers] facehuggers within, with [huggers_to_grow] more to grow (reserved: [huggers_reserved])."
if(isobserver(user))
#include "code\modules\mob\living\carbon\xenomorph\hive_status.dm"
var/current_hugger_count = 0
for(var/mob/mob as anything in totalXenos)

Check failure on line 49 in code/modules/cm_aliens/structures/special/egg_morpher.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "totalXenos"
if(isfacehugger(mob))
current_hugger_count++
var/datum/hive_status/hive = GLOB.hive_datum[hivenumber]

Check failure on line 52 in code/modules/cm_aliens/structures/special/egg_morpher.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "hivenumber"
. += "Current facehugger limit: <b>[current_hugger_count]/[playable_hugger_limit]</b>"
. += "Current facehugger limit: <b>[hive.current_hugger_count]/[hive.playable_hugger_limit]</b>"

Check failure on line 53 in code/modules/cm_aliens/structures/special/egg_morpher.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined field: "current_hugger_count" on /datum/hive_status

/obj/effect/alien/resin/special/eggmorph/attackby(obj/item/I, mob/user)
if(istype(I, /obj/item/grab))
Expand Down

0 comments on commit 53a613c

Please sign in to comment.