]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Defaulting to normal hostname if hostname_full is not set
authorz411 <z411@omaera.org>
Thu, 22 Apr 2021 00:02:17 +0000 (20:02 -0400)
committerz411 <z411@omaera.org>
Thu, 22 Apr 2021 00:02:17 +0000 (20:02 -0400)
qcsrc/server/client.qc

index 63a9ed6f9fb09af27c57d9d28b2ace30c0a42dad..d240077295d6f3cf50d7543ae530df5a6de8bdd5 100644 (file)
@@ -896,7 +896,7 @@ void ClientInit_misc(entity this)
        WriteCoord(channel, autocvar_g_trueaim_minrange);
        
        // z411 send full hostname
-       WriteString(channel, autocvar_hostname_full);
+       WriteString(channel, (autocvar_hostname_full != "" ? autocvar_hostname_full : autocvar_hostname));
        WriteString(channel, autocvar_sv_motd_permanent);
 }
 
@@ -1086,7 +1086,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);