Skip to content

Commit

Permalink
Fixes cyborg bolting so it is no longer instant. Again. (#22279)
Browse files Browse the repository at this point in the history
* Fixes bolting for real this time I swear

* Src is implied

---------

Co-authored-by: Adrer <adrermail@gmail.com>
  • Loading branch information
Adrer and Adrer authored Sep 8, 2023
1 parent b234b3e commit ff36c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/silicon/robot/robot_mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1598,6 +1598,6 @@ GLOBAL_LIST_INIT(robot_verbs_default, list(
to_chat(src, "<span class='warning'>You can only use this emote when you're out of charge.</span>")

/mob/living/silicon/robot/can_instant_lockdown()
if(emagged || faction_check_mob(src, "syndicate"))
if(emagged || ("syndicate" in faction))
return TRUE
return FALSE

0 comments on commit ff36c36

Please sign in to comment.