From 941f63e7f9509e4cc71d699343afb771b8cbee71 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 15 Sep 2017 03:34:15 -0500 Subject: [PATCH] [MIRROR] Adds a tip to examine for L6 SAW machinegun (#2779) * Merge pull request #30724 from JJRcop/saw_that_but_didnt_see_that Adds a tip to examine for L6 SAW machinegun * Adds a tip to examine for L6 SAW machinegun --- code/modules/projectiles/guns/ballistic/automatic.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/projectiles/guns/ballistic/automatic.dm b/code/modules/projectiles/guns/ballistic/automatic.dm index 77df793bc0..5388bf8e0a 100644 --- a/code/modules/projectiles/guns/ballistic/automatic.dm +++ b/code/modules/projectiles/guns/ballistic/automatic.dm @@ -295,6 +295,12 @@ pin = /obj/item/device/firing_pin +/obj/item/gun/ballistic/automatic/l6_saw/examine(mob/user) + ..() + if(cover_open && magazine) + to_chat(user, "It seems like you could use an empty hand to remove the magazine.") + + /obj/item/gun/ballistic/automatic/l6_saw/attack_self(mob/user) cover_open = !cover_open to_chat(user, "You [cover_open ? "open" : "close"] [src]'s cover.")