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 22:32:54 -03:00
committed by Roxy
parent fd44966146
commit 8552401cef
+3 -1
View File
@@ -374,4 +374,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)