Fixes implicit array initializers
This commit is contained in:
parent
7d3a0ca265
commit
fee83ce560
189 changed files with 440 additions and 808 deletions
|
|
@ -60,12 +60,12 @@ namespace Server.Commands
|
|||
}
|
||||
}
|
||||
|
||||
Map[] brit = new[]{ Map.Felucca, Map.Trammel };
|
||||
Map[] fel = new[]{ Map.Felucca };
|
||||
Map[] tram = new[]{ Map.Trammel };
|
||||
Map[] ilsh = new[]{ Map.Ilshenar };
|
||||
Map[] malas = new[]{ Map.Malas };
|
||||
Map[] tokuno = new[]{ Map.Tokuno };
|
||||
Map[] brit = { Map.Felucca, Map.Trammel };
|
||||
Map[] fel = { Map.Felucca };
|
||||
Map[] tram = { Map.Trammel };
|
||||
Map[] ilsh = { Map.Ilshenar };
|
||||
Map[] malas = { Map.Malas };
|
||||
Map[] tokuno = { Map.Tokuno };
|
||||
|
||||
for ( int i = 0; i < list.Count; ++i )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue