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.")