]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
more Don Strunzone
authorRudolf Polzer <divverent@alientrap.org>
Wed, 3 Nov 2010 19:04:32 +0000 (20:04 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Wed, 3 Nov 2010 19:04:32 +0000 (20:04 +0100)
qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.c

index 12bca0e3c2d2c736b5b48f6e3bf89227af0c19b0..ec006bd82141162885aa53262756d503c4e24b9e 100644 (file)
@@ -21,7 +21,6 @@ CLASS(XonoticServerInfoDialog) EXTENDS(XonoticDialog)
        ATTRIB(XonoticServerInfoDialog, currentServerKey, string, string_null)
        ATTRIB(XonoticServerInfoDialog, currentServerID, string, string_null)
        ATTRIB(XonoticServerInfoDialog, currentServerEncrypt, string, string_null)
-       ATTRIB(XonoticServerInfoDialog, currentServerCanConnect, string, string_null)
        ATTRIB(XonoticServerInfoDialog, currentServerPure, string, string_null)
 
        ATTRIB(XonoticServerInfoDialog, nameLabel, entity, NULL)
@@ -96,12 +95,10 @@ void XonoticServerInfoDialog_loadServerInfo(entity me, float i)
        if(me.currentServerID)
                strunzone(me.currentServerID);
        me.currentServerID = string_null;
-       if(me.currentServerEncrypt)
-               strunzone(me.currentServerEncrypt);
-       me.currentServerEncrypt = string_null;
-       if(me.currentServerCanConnect)
-               strunzone(me.currentServerCanConnect);
-       me.currentServerCanConnect = string_null;
+       // not zoned!
+       //if(me.currentServerEncrypt)
+       //      strunzone(me.currentServerEncrypt);
+       //me.currentServerEncrypt = string_null;
        if(me.currentServerPure)
                strunzone(me.currentServerPure);
        me.currentServerPure = string_null;