From 0a90dd6bba43b992408dbd0f1e23de8324757107 Mon Sep 17 00:00:00 2001 From: moxian Date: Sat, 17 Oct 2020 23:26:36 +0000 Subject: [PATCH] Foam darts should fall to the ground, not into nullspace. --- code/modules/projectiles/projectile/reusable.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/projectile/reusable.dm b/code/modules/projectiles/projectile/reusable.dm index 244100c3120..7430fbddf9b 100644 --- a/code/modules/projectiles/projectile/reusable.dm +++ b/code/modules/projectiles/projectile/reusable.dm @@ -42,7 +42,7 @@ if(dropped) return dropped = 1 - var/obj/item/ammo_casing/caseless/foam_dart/newdart = new ammo_type(loc) + var/obj/item/ammo_casing/caseless/foam_dart/newdart = new ammo_type(get_turf(src)) var/obj/item/ammo_casing/caseless/foam_dart/old_dart = ammo_casing newdart.modified = old_dart.modified if(pen)