From 23c21fee3bdac29687f1c509ddb70f5466a7822a Mon Sep 17 00:00:00 2001 From: sypsoti Date: Tue, 10 Mar 2026 05:58:06 -0500 Subject: [PATCH] fixes random spawner --- code/game/objects/random/random.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/random/random.dm b/code/game/objects/random/random.dm index b10416f63713..3a111afaccac 100644 --- a/code/game/objects/random/random.dm +++ b/code/game/objects/random/random.dm @@ -27,7 +27,7 @@ if(!type_to_spawn) return - for(var/atom/A as anything in create_instance(type_to_spawn)) + for(var/atom/A as anything in create_instance(type_to_spawn, loc)) if(pixel_x || pixel_y) A.default_pixel_x = pixel_x A.default_pixel_y = pixel_y