From: z411 Date: Tue, 3 Nov 2020 01:59:16 +0000 (-0300) Subject: Simplified welcome message X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=db105960e6bc6abfcba5e5a37a832c1f0cf526da;p=xonotic%2Fxonotic-data.pk3dir.git Simplified welcome message --- 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);