Skip to content

Commit

Permalink
Revert "Change map oil level classification again."
Browse files Browse the repository at this point in the history
This reverts commit abef527.
  • Loading branch information
KJeff01 committed May 4, 2020
1 parent abef527 commit 5488fb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions multiplay/skirmish/cobra_includes/mapDynamics.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,15 +110,15 @@ function mapOilLevel()
{
var str;
var perPlayer = averageOilPerPlayer();
if (perPlayer <= 8)
if (perPlayer <= 10)
{
str = "LOW";
}
else if ((perPlayer > 8) && (perPlayer < 16))
else if ((perPlayer > 10) && (perPlayer < 20))
{
str = "MEDIUM";
}
else if ((perPlayer >= 16) && (perPlayer < 30))
else if ((perPlayer >= 20) && (perPlayer < 30))
{
str = "HIGH";
}
Expand Down

0 comments on commit 5488fb4

Please sign in to comment.