Skip to content

Commit

Permalink
CnCNet#502 - players cannot select Germany faction with "No Yuri/No F…
Browse files Browse the repository at this point in the history
…rance"
  • Loading branch information
devo1929 committed Jan 18, 2024
1 parent 6bdd1da commit 599c68d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ private void HandleOptionsRequest(string playerName, int options)
for(int i = 0; i < RandomSelectorCount; i++)
disallowedSides.Insert(0, false);

if (side > 0 && side <= SideCount && disallowedSides[side - 1])
if (side > 0 && side <= SideCount && disallowedSides[side])
return;

if (Map.CoopInfo != null)
Expand Down

0 comments on commit 599c68d

Please sign in to comment.