From df7b19b1adc776b0d06358f0e72049bba1564e3a Mon Sep 17 00:00:00 2001 From: TimePath Date: Sat, 6 Aug 2016 16:26:43 +1000 Subject: [PATCH] Server list: soft refresh --- qcsrc/menu/xonotic/dialog_multiplayer_join.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qcsrc/menu/xonotic/dialog_multiplayer_join.qc b/qcsrc/menu/xonotic/dialog_multiplayer_join.qc index bba6d68b08..a34d0d80a1 100644 --- a/qcsrc/menu/xonotic/dialog_multiplayer_join.qc +++ b/qcsrc/menu/xonotic/dialog_multiplayer_join.qc @@ -17,7 +17,8 @@ entity makeXonoticServerListTab() void XonoticServerListTab_refresh(entity this, entity slist) { - slist.refreshServerList(slist, REFRESHSERVERLIST_RESET); + bool clear = false; + slist.refreshServerList(slist, clear ? REFRESHSERVERLIST_RESET : REFRESHSERVERLIST_ASK); } void XonoticServerListTab_fill(entity me) -- 2.39.2