From b078d356c4be91f2ef60bd890e7412c536bf0a2a Mon Sep 17 00:00:00 2001 From: AffectedArc07 Date: Sun, 27 Jan 2019 16:07:28 +0000 Subject: [PATCH] oops forgot that --- code/modules/client/client procs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 463559e5b96..bd12082dd7e 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -373,11 +373,11 @@ if(prefs.lastchangelog != changelog_hash) //bolds the changelog button on the interface so we know there are updates. -CP if(establish_db_connection()) to_chat(src, "Changelog has changed since your last visit.") - winset(src, "rpane.changelog", "background-color=#bb7700;font-style=bold") + winset(src, "rpane.changelog", "background-color=#bb7700;font-color=#FFFFFF;font-style=bold") else if(establish_db_connection()) if(prefs.toggles & UI_DARKMODE) - winset(src, "rpane.changelog", "background-color=#bb7700;font-style=bold") // makes changelog dark if its been set + winset(src, "rpane.changelog", "background-color=#bb7700;font-color=#FFFFFF;font-style=bold") // makes changelog dark if its been set else winset(src, "rpane.changelog", "background-color=#ffffff;font-color=#000000") // makes changelog normal if it hasnt been set else