From 1c290eabe2fb3bf156e612fc4fac780f7bd2a6d4 Mon Sep 17 00:00:00 2001 From: GenericHeroGuy Date: Sun, 26 Oct 2025 15:10:28 +0100 Subject: [PATCH] Double the default chat window height Let's see how this goes --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index d5b790499..465d99411 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -384,7 +384,7 @@ consvar_t cv_chatwidth = CVAR_INIT ("chatwidth", "150", CV_SAVE, chatwidth_cons_ // chatheight static CV_PossibleValue_t chatheight_cons_t[] = {{6, "MIN"}, {22, "MAX"}, {0, NULL}}; -consvar_t cv_chatheight = CVAR_INIT ("chatheight", "8", CV_SAVE, chatheight_cons_t, NULL); +consvar_t cv_chatheight = CVAR_INIT ("chatheight", "16", CV_SAVE, chatheight_cons_t, NULL); // chat notifications (do you want to hear beeps? I'd understand if you didn't.) consvar_t cv_chatnotifications = CVAR_INIT ("chatnotifications", "On", CV_SAVE, CV_OnOff, NULL);