From f23a31edfa6901e3cc38e81fdfe0066e838205e2 Mon Sep 17 00:00:00 2001 From: QualityVan Date: Thu, 20 Apr 2017 15:31:02 -0400 Subject: [PATCH] Fixes loading ammo for the L6-SAW (#26370) --- code/modules/projectiles/guns/ballistic/automatic.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/projectiles/guns/ballistic/automatic.dm b/code/modules/projectiles/guns/ballistic/automatic.dm index c9553aaac87..b334b7b7759 100644 --- a/code/modules/projectiles/guns/ballistic/automatic.dm +++ b/code/modules/projectiles/guns/ballistic/automatic.dm @@ -333,10 +333,7 @@ /obj/item/weapon/gun/ballistic/automatic/l6_saw/attackby(obj/item/A, mob/user, params) - . = ..() - if(.) - return - if(!cover_open) + if(!cover_open && istype(A, mag_type)) to_chat(user, "[src]'s cover is closed! You can't insert a new mag.") return ..()