Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Cyborgs cannot be emag spammed #28013

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -1174,8 +1174,8 @@ GLOBAL_LIST_INIT(robot_verbs_default, list(
to_chat(user, "You must close the panel first")
return
else
sleep(6)
SetEmagged(TRUE)
sleep(6)
SetLockdown(1) //Borgs were getting into trouble because they would attack the emagger before the new laws were shown
if(hud_used)
hud_used.update_robot_modules_display() //Shows/hides the emag item if the inventory screen is already open.
Expand Down
Loading