Fix a wrong null check in posibrain

A wrong nullcheck that prevent posibrain searching for a player
This commit is contained in:
Jupotter
2013-04-13 13:16:28 +03:00
parent a8e1081d9d
commit 614c01f238
@@ -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"