Strange relic animals get spawned mob trait (#94333)

## About The Pull Request

So they don't give you omega-depression.

## Changelog

🆑 Melbert
fix: Summon animals relic makes you less depressed
/🆑
This commit is contained in:
MrMelbert
2025-12-06 09:53:59 -07:00
committed by GitHub
parent 141f3d8518
commit 36df832ff1
+2 -1
View File
@@ -686,7 +686,8 @@
)
for(var/counter in 1 to rand(1, 25))
var/animal_spawn = pick(valid_animals)
new animal_spawn(get_turf(src))
var/mob/living/animal = new animal_spawn(get_turf(src))
ADD_TRAIT(animal, TRAIT_SPAWNED_MOB, INNATE_TRAIT)
warn_admins(user, "Mass Mob Spawn")
if(prob(60))
to_chat(user, span_warning("[src] falls apart!"))