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. -->