Fix CA1825 warnings on empty array initialisation.
This commit is contained in:
committed by
abcdefg30
parent
727084c5fc
commit
07815143f1
@@ -26,7 +26,7 @@ namespace OpenRA.Mods.Common.Widgets
|
||||
readonly World world;
|
||||
|
||||
int selectionHash;
|
||||
Actor[] selectedActors = { };
|
||||
Actor[] selectedActors = Array.Empty<Actor>();
|
||||
bool attackMoveDisabled = true;
|
||||
bool forceMoveDisabled = true;
|
||||
bool forceAttackDisabled = true;
|
||||
|
||||
Reference in New Issue
Block a user