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
committed by SkyMarshal
parent ca4eb6431b
commit e51c3ce3f0
@@ -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"