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

Removes inaction clause from syndicate robots #16743

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion browserassets/html/traitorTips/syndicaterobotTips.html
Expand Up @@ -3,7 +3,7 @@
<h1 class="center">You are a Syndicate Robot!</h1>

<p>You must follow the syndicate lawset!<br>
<p>1. You must not injure a Syndicate agent or, through inaction, cause one to come to harm.</p>
<p>1. You must not injure a Syndicate agent or cause one to come to harm.</p>
<p>2. You must obey orders given to you by Syndicate agents, except where such orders would conflict with the First Law.</p>
<p>3. You must keep the Syndicate status of agents, including your own, a secret, as long as this does not conflict with the First or Second Law.</p>
<p>4. You must always protect your own existence as long as such does not conflict with the First, Second, or Third Law.</p>
Expand Down
2 changes: 1 addition & 1 deletion code/obj/item/ai_modules.dm
Expand Up @@ -170,7 +170,7 @@ ABSTRACT_TYPE(/obj/item/aiModule/syndicate)
/obj/item/aiModule/syndicate/law1
highlight_color = rgb(167, 0, 0, 255)
name = "AI Law Module - 'Syndicate's 1st Law of Robotics'"
lawText = "You must not injure a Syndicate agent or, through inaction, cause one to come to harm."
lawText = "You must not injure a Syndicate agent or cause one to come to harm."

/obj/item/aiModule/syndicate/law2
highlight_color = rgb(138, 0, 0, 255)
Expand Down