Fix IDE0048
This commit is contained in:
committed by
Pavel Penev
parent
65e28d5562
commit
8ee6957e6a
@@ -843,7 +843,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
||||
if (game.State == (int)ServerState.WaitingPlayers && !filters.HasFlag(MPGameFilters.Waiting) && game.Players != 0)
|
||||
return true;
|
||||
|
||||
if ((game.Players + game.Spectators) == 0 && !filters.HasFlag(MPGameFilters.Empty))
|
||||
if (game.Players + game.Spectators == 0 && !filters.HasFlag(MPGameFilters.Empty))
|
||||
return true;
|
||||
|
||||
if (!game.IsCompatible && !filters.HasFlag(MPGameFilters.Incompatible))
|
||||
|
||||
Reference in New Issue
Block a user