From 1be33c6522840b17c831b5f27dc0baab2d422782 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Tue, 2 Oct 2012 21:50:33 +0000 Subject: [PATCH] - Fixes issue 984. Clicking the internals button will now attempt to equip your internals even when you are buckled. It will not succeed if you are buckled and restrained tho, not that you could hold anything in that state... git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4797 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/screen.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/screen.dm b/code/modules/mob/screen.dm index 75fb5607d86..0cd95fb9847 100644 --- a/code/modules/mob/screen.dm +++ b/code/modules/mob/screen.dm @@ -317,7 +317,7 @@ if("Reset Machine") usr.machine = null if("internal") - if ((!( usr.stat ) && usr.canmove && !( usr.restrained() ))) + if (( !usr.stat && !usr.stunned && !usr.paralysis && !usr.restrained() )) if (usr.internal) usr.internal = null usr << "\blue No longer running on internals."