From afdabc97ec531e92ed19c8cd4e1f468bb8f2eee3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 20 Apr 2017 22:02:26 -0500 Subject: [PATCH] Fixes loading ammo for the L6-SAW (#496) --- 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 c9553aaac8..b334b7b775 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 ..()