Removes the AI from traitor job eligibility (#14856)

This commit is contained in:
Jaraci
2022-11-12 23:09:49 +01:00
committed by GitHub
parent ecb5a8e769
commit bcc2ea8666
3 changed files with 17 additions and 2 deletions
+3 -1
View File
@@ -101,8 +101,10 @@
/datum/uplink_item/item/tools/ai_module
name = "Hacked AI Upload Module"
item_cost = 4
item_cost = 2
path = /obj/item/aiModule/syndicate
desc = "A hacked AI law module able to subvert a shipbound intelligence when appropriately configured. It must be installed through a special upload console \
-- a circuitboard for which can be found in the secure technical storage areas of most SCC facilities."
/datum/uplink_item/item/tools/supply_beacon
name = "Hacked Supply Beacon (DANGER!)"
+1 -1
View File
@@ -3,7 +3,7 @@ var/datum/antagonist/traitor/traitors
// Inherits most of its vars from the base datum.
/datum/antagonist/traitor
id = MODE_TRAITOR
restricted_jobs = list("Head of Security", "Captain", "Chief Engineer", "Research Director", "Chief Medical Officer", "Executive Officer", "Operations Manager")
restricted_jobs = list("Head of Security", "Captain", "Chief Engineer", "Research Director", "Chief Medical Officer", "Executive Officer", "Operations Manager", "AI")
protected_jobs = list("Security Officer", "Security Cadet", "Warden", "Investigator")
flags = ANTAG_SUSPICIOUS | ANTAG_RANDSPAWN | ANTAG_VOTABLE
required_age = 10
@@ -0,0 +1,13 @@
# Your name.
author: Omicega
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- tweak: "Removes the AI job from traitor role eligibility."