From c41140c636b2bace1c4bdd3c9dc18d7a9318467b Mon Sep 17 00:00:00 2001 From: Crazylemon Date: Wed, 2 Dec 2015 09:30:03 -0800 Subject: [PATCH] This should let MMI mechs move again Need to give this a test, but it looks like the else case of the mecha check was hijacked by the MMI check, which then prevented brains in a mech from moving --- code/modules/mob/living/carbon/brain/brain.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/brain/brain.dm b/code/modules/mob/living/carbon/brain/brain.dm index 608f9b4a8e7..61879d81f52 100644 --- a/code/modules/mob/living/carbon/brain/brain.dm +++ b/code/modules/mob/living/carbon/brain/brain.dm @@ -54,7 +54,7 @@ if(in_contents_of(/obj/mecha)) canmove = 1 use_me = 1 //If it can move, let it emote - if(istype(loc, /obj/item/device/mmi)) canmove = 1 //mmi won't move anyways so whatever + else if(istype(loc, /obj/item/device/mmi)) canmove = 1 //mmi won't move anyways so whatever else canmove = 0 return canmove