Skip to content

Commit

Permalink
And this too because I'm here anyway
Browse files Browse the repository at this point in the history
The M2C doesn't have the same problem, but dragging it onto yourself will quickly flash a progress indicator up.
  • Loading branch information
SabreML committed Jan 13, 2024
1 parent d639306 commit 1561c9a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/cm_marines/m2c.dm
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,12 @@
// DISASSEMBLY

/obj/structure/machinery/m56d_hmg/auto/MouseDrop(over_object, src_location, over_location)
if(!ishuman(usr)) return
if(!ishuman(usr))
return
var/mob/living/carbon/human/user = usr
// If the user is unconscious or dead.
if(user.stat)
return

if(over_object == user && in_range(src, user))
if((rounds > 0) && (user.a_intent & (INTENT_GRAB)))
Expand Down

0 comments on commit 1561c9a

Please sign in to comment.