mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
Fix a wrong null check in posibrain
A wrong nullcheck that prevent posibrain searching for a player
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user