From 614c01f238f58227ae4bbbc44fd15bde2afd286a Mon Sep 17 00:00:00 2001 From: Jupotter Date: Sat, 13 Apr 2013 13:16:28 +0300 Subject: [PATCH] Fix a wrong null check in posibrain A wrong nullcheck that prevent posibrain searching for a player --- code/modules/mob/living/carbon/brain/posibrain.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/brain/posibrain.dm b/code/modules/mob/living/carbon/brain/posibrain.dm index 1bc59497ebc..3bba11e32d1 100644 --- a/code/modules/mob/living/carbon/brain/posibrain.dm +++ b/code/modules/mob/living/carbon/brain/posibrain.dm @@ -17,7 +17,7 @@ attack_self(mob/user as mob) - if(!brainmob && !brainmob.key && searching == 0) + if(brainmob && !brainmob.key && searching == 0) //Start the process of searching for a new user. user << "\blue You carefully locate the manual activation switch and start the positronic brain's boot process." icon_state = "posibrain-searching"