Fixed cockroach spawners not doing anything (#91577)

## About The Pull Request

In my infinite hubris and sloth, I foolishly assumed mob spawners
'spawn' 'mobs'. In truth, they actually do Absolutely Nothing and it's
just the ghost_role and corpse subtypes that actually do anything. It's
still my bad but, bruh. bruh uruhurb,,,

## Why It's Good For The Game

closes #91575

Cock 
Roach

## Changelog

🆑
fix: Fixed cockroach spawners not doing anything
/🆑
This commit is contained in:
carlarctg
2025-06-11 19:32:54 -06:00
committed by GitHub
parent fe2a7fd937
commit 1d1b3eca43
+3 -1
View File
@@ -360,4 +360,6 @@
/obj/effect/mob_spawn/cockroach/Initialize(mapload)
if(prob(bloodroach_chance))
mob_type = /mob/living/basic/cockroach/bloodroach
return ..()
. = ..()
INVOKE_ASYNC(src, PROC_REF(create))
qdel(src)