Skip to content

Commit

Permalink
fix accidentally restricting most contracts to 4 units
Browse files Browse the repository at this point in the history
  • Loading branch information
wmtorode committed Jun 1, 2020
1 parent 043328e commit 910cc21
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion BiggerDrops/BiggerDrops/Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ public static class LanceConfiguratorPanel_SetData {
}
else
{
maxUnits = contract.Override.maxNumberOfPlayerUnits;
if (contract.Override.maxNumberOfPlayerUnits != 4)
{
maxUnits = contract.Override.maxNumberOfPlayerUnits;
}
}
}
} else {
Expand Down

0 comments on commit 910cc21

Please sign in to comment.