From 60dea653042ad6f3907ebf3c8f2c06c86daadaca Mon Sep 17 00:00:00 2001
From: _0Steven <42909981+00-Steven@users.noreply.github.com>
Date: Fri, 27 Sep 2024 01:57:45 +0200
Subject: [PATCH] Fix broken span defines, fixes broken traitor panel (#86924)
## About The Pull Request
So uh.
https://github.com/tgstation/tgstation/blob/a8af27fa0af69cd6859c8e03faf8b7c20932a1a3/code/__DEFINES/span.dm#L17-L18
Improperly ended spans.
Yeah this broke the traitor panel, making it all red, and blocking the
remove button.
## Why It's Good For The Game
Fixes #86921.
## Changelog
:cl:
fix: Fixed two broken spans, primarily used in traitor panel and some
basic bot stuff.
admin: Traitor panel text is no longer bright red when an antag is
selected, and remove button is no longer blocked.
/:cl:
---
code/__DEFINES/span.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/__DEFINES/span.dm b/code/__DEFINES/span.dm
index f7d9ebef916..9b3c2612afa 100644
--- a/code/__DEFINES/span.dm
+++ b/code/__DEFINES/span.dm
@@ -14,8 +14,8 @@
#define span_alien(str) ("" + str + "")
#define span_announce(str) ("" + str + "")
#define span_announcement_header(str) ("")
-#define span_average(str) ("" + str + "")
+#define span_bad(str) ("" + str + "")
#define span_big(str) ("" + str + "")
#define span_bigicon(str) ("" + str + "")
#define span_binarysay(str) ("" + str + "")