From 0199a0de8ce846e1dbac7cdba26531f320489f8a Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Mon, 26 Sep 2022 15:23:23 +1000 Subject: [PATCH] Make MOTD header fancier in welcome message --- qcsrc/client/main.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/main.qc b/qcsrc/client/main.qc index 1dba6aa96..9fc858cda 100644 --- a/qcsrc/client/main.qc +++ b/qcsrc/client/main.qc @@ -1468,7 +1468,7 @@ bool net_handle_ServerWelcome() msg = strcat(msg, mutator_msg); // trust that the mutator will do proper formatting if (motd != "") - msg = strcat(msg, "\n\n^8", _("MOTD:"), " ^7", motd); + msg = strcat(msg, "^8\n^9↓ ", _("Server's message"), " ↓^8\n", motd); strcpy(welcome_msg, msg); welcome_msg_menu_check_maxtime = time + 1; // wait for menu to load before showing the welcome dialog -- 2.39.2