From db105960e6bc6abfcba5e5a37a832c1f0cf526da Mon Sep 17 00:00:00 2001 From: z411 Date: Mon, 2 Nov 2020 22:59:16 -0300 Subject: [PATCH] Simplified welcome message --- qcsrc/server/client.qc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index 1dcab6ef3..22926d7b2 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -1068,10 +1068,11 @@ string getwelcomemessage(entity this) modifications = strcat(modifications, ", Powerups"); modifications = substring(modifications, 2, strlen(modifications) - 2); - string versionmessage = GetClientVersionMessage(this); - string s = strcat(versionmessage, "^8\n^9", (autocvar_hostname_full ? autocvar_hostname_full : autocvar_hostname)); + //string versionmessage = GetClientVersionMessage(this); + //string s = strcat(versionmessage, "^8\n^9", (autocvar_hostname_full ? autocvar_hostname_full : autocvar_hostname)); + string s = (autocvar_hostname_full ? autocvar_hostname_full : autocvar_hostname)); - s = strcat(s, "^8\n^1", gamemode_name); + s = strcat(s, "^8\n^7", gamemode_name); if(modifications != "") s = strcat(s, "^7 | ^3", modifications); -- 2.39.2