From b7231dc8cc05f8729ca000a18377c4e403a04430 Mon Sep 17 00:00:00 2001 From: Mechoid Date: Sun, 23 Sep 2018 00:24:34 -0700 Subject: [PATCH] Don't spawn things in Null please. --- code/game/objects/structures/props/nest.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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].")