Fix IDE0062
This commit is contained in:
committed by
Pavel Penev
parent
023d80b94d
commit
cbd0583289
@@ -307,7 +307,7 @@ namespace OpenRA.Mods.Common.Pathfinder
|
||||
/// </summary>
|
||||
void BuildGrids()
|
||||
{
|
||||
Grid GetCPosBounds(Map map)
|
||||
static Grid GetCPosBounds(Map map)
|
||||
{
|
||||
if (map.Grid.Type == MapGridType.RectangularIsometric)
|
||||
{
|
||||
@@ -369,7 +369,7 @@ namespace OpenRA.Mods.Common.Pathfinder
|
||||
}
|
||||
}
|
||||
|
||||
CPos AbstractCellForLocalCells(List<CPos> cells, byte layer)
|
||||
static CPos AbstractCellForLocalCells(List<CPos> cells, byte layer)
|
||||
{
|
||||
var minX = int.MaxValue;
|
||||
var minY = int.MaxValue;
|
||||
|
||||
@@ -692,7 +692,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
||||
header.Get<LabelWidget>("LABEL").GetText = () => headerTitle;
|
||||
rows.Add(header);
|
||||
|
||||
int ListOrder(GameServer g)
|
||||
static int ListOrder(GameServer g)
|
||||
{
|
||||
// Servers waiting for players are always first
|
||||
if (g.State == (int)ServerState.WaitingPlayers && g.Players > 0)
|
||||
|
||||
Reference in New Issue
Block a user