From: Mario Date: Thu, 26 Apr 2018 07:38:03 +0000 (+1000) Subject: Don't print an extra disconnect message, also fix disconnect button description X-Git-Tag: xonotic-v0.8.5~2170 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=dd181d74277e8307e53048b4352710571b2d3892;p=xonotic%2Fxonotic-data.pk3dir.git Don't print an extra disconnect message, also fix disconnect button description --- diff --git a/qcsrc/menu/xonotic/dialog_multiplayer_join.qc b/qcsrc/menu/xonotic/dialog_multiplayer_join.qc index cd75a0ab5..4ec7e7326 100644 --- a/qcsrc/menu/xonotic/dialog_multiplayer_join.qc +++ b/qcsrc/menu/xonotic/dialog_multiplayer_join.qc @@ -81,8 +81,8 @@ void XonoticServerListTab_fill(entity me) e.onClickEntity = slist; slist.infoButton = e; me.TR(me); - me.TD(me, 1, 1, e = makeXonoticCommandButton_T(_("Disconnect"), '0 0 0', "echo disconnect\ndisconnect", 0, - _("Disconnecting from server"))); + me.TD(me, 1, 1, e = makeXonoticCommandButton_T(_("Disconnect"), '0 0 0', "disconnect", 0, + _("Disconnect from the server"))); slist.disconnectButton = e; me.TD(me, 1, me.columns-1, e = makeXonoticButton(_("Join!"), '0 0 0')); e.onClick = ServerList_Connect_Click;