From ed538f7efe9c33b3048d59873dcbc8ac902c6e03 Mon Sep 17 00:00:00 2001 From: Marisa the Magician Date: Thu, 30 Nov 2023 13:08:01 +0100 Subject: [PATCH] Use dark gray instead of black for Korax's chat lines. This is mainly because GZDoom uses literal BLACK to print those to the terminal and, obviously, black text on a black background isn't legible. --- language.version | 4 ++-- zscript/hud/swwm_hud_messages.zsc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/language.version b/language.version index c3b77f10e..106b565fa 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1035 \cu(Wed 29 Nov 11:32:43 CET 2023)\c-"; -SWWM_SHORTVER="\cw1.3pre r1035 \cu(2023-11-29 11:32:43)\c-"; +SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1036 \cu(Thu 30 Nov 13:08:01 CET 2023)\c-"; +SWWM_SHORTVER="\cw1.3pre r1036 \cu(2023-11-30 13:08:01)\c-"; diff --git a/zscript/hud/swwm_hud_messages.zsc b/zscript/hud/swwm_hud_messages.zsc index 3a1297c52..ce849b897 100644 --- a/zscript/hud/swwm_hud_messages.zsc +++ b/zscript/hud/swwm_hud_messages.zsc @@ -69,7 +69,7 @@ extend Class SWWMStatusBar } if ( koraxline ) { - Console.PrintfEx(PRINT_CHAT,"\cmKorax\c*: "..msg.."\c*"); + Console.PrintfEx(PRINT_CHAT,"\cuKorax\c*: "..msg.."\c*"); return true; } bool ispuzzle = false; @@ -191,7 +191,7 @@ extend Class SWWMStatusBar mainframeline = true; if ( mainframeline ) { - Console.PrintfEx(PRINT_CHAT,"\cmAI Mainframe\c*: "..msg.."\c*"); + Console.PrintfEx(PRINT_CHAT,"\cuAI Mainframe\c*: "..msg.."\c*"); return true; } if ( !fnt || (fnt == smallfont) )