From: z411 Date: Tue, 3 Nov 2020 02:00:31 +0000 (-0300) Subject: Fixed semicolon X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9e019cbbd6ae599df0d197aabb7d20f31f3408b0;p=xonotic%2Fxonotic-data.pk3dir.git Fixed semicolon --- diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index 22926d7b2..05ecad2c3 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -1070,7 +1070,7 @@ string getwelcomemessage(entity this) //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)); + string s = (autocvar_hostname_full ? autocvar_hostname_full : autocvar_hostname); s = strcat(s, "^8\n^7", gamemode_name);