diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm index ee45ebef611..310e13f73af 100644 --- a/code/modules/research/experimentor.dm +++ b/code/modules/research/experimentor.dm @@ -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!"))