From 844dd4c7f83bd3e458902c052083b92af9ababe9 Mon Sep 17 00:00:00 2001 From: Erthilo Date: Wed, 9 May 2012 16:05:51 +0100 Subject: [PATCH] Heads and Security can now be set as Revs/Cultists from the traitor panel. (Why you would assign a Head as a Rev I have no idea.) --- code/datums/mind.dm | 22 +++++++++++----------- html/changelog.html | 1 + 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 4644c924cfc..11ae3f6d417 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -68,12 +68,12 @@ datum/mind if (ticker.mode.config_tag=="revolution") text = uppertext(text) text = "[text]: " - if (assigned_role in command_positions) +/* if (assigned_role in command_positions) text += "HEAD|officer|employee|headrev|rev" else if (assigned_role in list("Security Officer", "Detective", "Warden")) - text += "head|OFFICER|employee|headre|rev" - else if (src in ticker.mode.head_revolutionaries) - text = "head|officer|employee|HEADREV|rev" + text += "head|OFFICER|employee|headre|rev"*/ + if (src in ticker.mode.head_revolutionaries) + text = "employee|HEADREV|rev" text += "
Flash: give" var/list/L = current.get_contents() @@ -90,9 +90,9 @@ datum/mind if (objectives.len==0) text += "
Objectives are empty! Set to kill all heads." else if (src in ticker.mode.revolutionaries) - text += "head|officer|employee|headrev|REV" + text += "employee|headrev|REV" else - text += "head|officer|EMPLOYEE|headrev|rev" + text += "EMPLOYEE|headrev|rev" sections["revolution"] = text /** CULT ***/ @@ -100,19 +100,19 @@ datum/mind if (ticker.mode.config_tag=="cult") text = uppertext(text) text = "[text]: " - if (assigned_role in command_positions) +/* if (assigned_role in command_positions) text += "HEAD|officer|employee|cultist" else if (assigned_role in list("Security Officer", "Detective", "Warden")) - text += "head|OFFICER|employee|cultist" - else if (src in ticker.mode.cult) - text += "head|officer|employee|CULTIST" + text += "head|OFFICER|employee|cultist"*/ + if (src in ticker.mode.cult) + text += "employee|CULTIST" text += "
Give tome|amulet." /* if (objectives.len==0) text += "
Objectives are empty! Set to sacrifice and escape or summon." */ else - text += "head|officer|EMPLOYEE|cultist" + text += "EMPLOYEE|cultist" sections["cult"] = text /** WIZARD ***/ diff --git a/html/changelog.html b/html/changelog.html index ae382aa3807..0f82d4f3064 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -61,6 +61,7 @@ should be listed in the changelog upon commit though. Thanks. -->
  • Added a 'remove ID' verb to PDAs which attempts to remove the ID from a PDA. If your active hand is empty it puts it there, otherwise it puts it on the floor under you.
  • Tajaran can see in the dark.
  • Blind rune can no longer be made into a talisman.
  • +
  • Cyborgs now lose power much less quickly with no active modules. Active modules will drain charge more quickly though.
  • Mining cyborgs are now slightly more useful, having a much larger satchel, and an improved drill.
  • Constructs can now see who cultists are in cult mode.
  • Coffins are now sideways to better fit dead bodies.