From 3080b5ffb8d1ddcac5df3d6edd5597e63289993e Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Wed, 13 Dec 2023 03:35:24 +0000 Subject: [PATCH] M56D can no longer be used by the dead. (#5197) # About the pull request Yep. # Explain why it's good for the game # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: M56D can no longer be used by the dead. /:cl: --- code/modules/cm_marines/smartgun_mount.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cm_marines/smartgun_mount.dm b/code/modules/cm_marines/smartgun_mount.dm index 01183ebceca5..8fb0b42a0123 100644 --- a/code/modules/cm_marines/smartgun_mount.dm +++ b/code/modules/cm_marines/smartgun_mount.dm @@ -794,7 +794,7 @@ I.flick_overlay(src, 3) /obj/structure/machinery/m56d_hmg/MouseDrop(over_object, src_location, over_location) //Drag the MG to us to man it. - if(!ishuman(usr)) + if(!ishuman(usr) || usr.stat) return var/mob/living/carbon/human/user = usr //this is us