From 4f86f698080258ab9db70bb996c61c554f5619e2 Mon Sep 17 00:00:00 2001 From: mwerezak Date: Mon, 23 Feb 2015 22:27:40 -0500 Subject: [PATCH] Fixes missing return that made all bullets pass through mobs --- code/modules/projectiles/projectile/bullets.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/projectile/bullets.dm b/code/modules/projectiles/projectile/bullets.dm index 50d3c04f46..fcdab54beb 100644 --- a/code/modules/projectiles/projectile/bullets.dm +++ b/code/modules/projectiles/projectile/bullets.dm @@ -19,7 +19,7 @@ mob_passthrough_check = 1 else mob_passthrough_check = 0 - ..() + return ..() /obj/item/projectile/bullet/can_embed() //prevent embedding if the projectile is passing through the mob