From d4db29099863b20a2f1e638899da9926a2f615d3 Mon Sep 17 00:00:00 2001 From: tralezab <40974010+tralezab@users.noreply.github.com> Date: Tue, 31 Jan 2023 20:18:33 -0800 Subject: [PATCH] Renames Antagonist UI Button "Antag" -> "Special Role" (#73016) ## About The Pull Request Renames the button from referring to the special role as an antagonist. ## Why It's Good For The Game A new player rolled ERT, read "Antag", and went hog wild. We can spend however long debating if they were faithfully confused by naming or not, but regardless the antagonist datum is for more than just antagonists at this point, and it fits much better to refer to them as this instead. ## Changelog :cl: spellcheck: Renamed the Antagonist Info button slightly. /:cl: --- code/modules/antagonists/_common/antag_datum.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/_common/antag_datum.dm b/code/modules/antagonists/_common/antag_datum.dm index 2432ef3aa61..a34422282c5 100644 --- a/code/modules/antagonists/_common/antag_datum.dm +++ b/code/modules/antagonists/_common/antag_datum.dm @@ -126,13 +126,13 @@ GLOBAL_LIST_EMPTY(antagonists) //button for antags to review their descriptions/info /datum/action/antag_info - name = "Open Antag Information:" + name = "Open Special Role Information:" button_icon_state = "round_end" show_to_observers = FALSE /datum/action/antag_info/New(Target) . = ..() - name += " [target]" + name = "Open [target] Information:" /datum/action/antag_info/Trigger(trigger_flags) . = ..()