diff --git a/code/game/objects/structures/props/nest.dm b/code/game/objects/structures/props/nest.dm index 3b49d304a9..b6a4677f12 100644 --- a/code/game/objects/structures/props/nest.dm +++ b/code/game/objects/structures/props/nest.dm @@ -51,7 +51,7 @@ if(istype(spawnpoint) && den_mobs.len < max_creatures) last_spawn = world.time var/spawn_choice = pick(creature_types) - var/mob/living/L = new spawn_choice + var/mob/living/L = new spawn_choice(spawnpoint) if(den_faction) L.faction = den_faction visible_message("\The [L] crawls out of \the [src].")