mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 19:22:20 +00:00
## About The Pull Request Stabilized gold extracts can now summon basicmobs, Also, summoned familiars become friendly to the owner, which stops stuff like mice running away. ## Why It's Good For The Game They can now make cool basicmob carp and stuff Fixes #74008 ## Changelog 🆑 fix: Stabilized gold extracts can now spawn basicmobs /🆑
11 lines
452 B
Plaintext
11 lines
452 B
Plaintext
///Unit test that spawns all mobs that can be spawned by golden slimes
|
|
/datum/unit_test/spawn_mobs
|
|
|
|
/datum/unit_test/spawn_mobs/Run()
|
|
for(var/mob/living/simple_animal/animal as anything in subtypesof(/mob/living/simple_animal))
|
|
if (initial(animal.gold_core_spawnable))
|
|
allocate(animal)
|
|
for(var/mob/living/basic/basic_animal as anything in subtypesof(/mob/living/basic))
|
|
if (initial(basic_animal.gold_core_spawnable))
|
|
allocate(basic_animal)
|