Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzmike committed Jun 6, 2024
1 parent 7bf1a91 commit 5e37880
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/modules/mob/living/carbon/xenomorph/hive_status.dm
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,14 @@

return TRUE

/datum/hive_status/proc/get_current_playable_facehugger_count()
var/count = 0
for(var/mob/mob as anything in totalXenos)
if(isfacehugger(mob))
count++
return count
endproc

/datum/hive_status/proc/spawn_as_hugger(mob/dead/observer/user, atom/A)
var/mob/living/carbon/xenomorph/facehugger/hugger = new /mob/living/carbon/xenomorph/facehugger(A.loc, null, hivenumber)
user.mind.transfer_to(hugger, TRUE)
Expand Down

0 comments on commit 5e37880

Please sign in to comment.