From c45d472f9da25f0a8312c815a16b1983fc90b475 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 13 Dec 2014 11:10:17 +1300 Subject: [PATCH] Hide started games from the server list to reduce noise. --- OpenRA.Mods.RA/Widgets/Logic/ServerBrowserLogic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/Widgets/Logic/ServerBrowserLogic.cs b/OpenRA.Mods.RA/Widgets/Logic/ServerBrowserLogic.cs index 9bbf0a2de8..fade2cff2a 100644 --- a/OpenRA.Mods.RA/Widgets/Logic/ServerBrowserLogic.cs +++ b/OpenRA.Mods.RA/Widgets/Logic/ServerBrowserLogic.cs @@ -36,7 +36,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic bool showWaiting = true; bool showEmpty = true; - bool showStarted = true; + bool showStarted = false; bool showProtected = true; bool showIncompatible = false;