From: Rudolf Polzer Date: Wed, 3 Nov 2010 19:04:32 +0000 (+0100) Subject: more Don Strunzone X-Git-Tag: xonotic-v0.1.0preview~205 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=fbe2473016a5dfc8caed84cb0ad62b6642b1f80d;hp=b1d62afcd834544c33881566ab70ac11b1725b61 more Don Strunzone --- diff --git a/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.c b/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.c index 12bca0e3c2..ec006bd821 100644 --- a/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.c +++ b/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.c @@ -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;