Skip to content

Commit

Permalink
No Elo change when playing unsupported maps
Browse files Browse the repository at this point in the history
  • Loading branch information
sprunk committed May 29, 2015
1 parent 91860cb commit a3308b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZkData/Ef/SpringBattle.cs
Expand Up @@ -159,7 +159,7 @@ public void CalculateAllElo(bool noElo = false, bool planetwars = false)
LoserTeamXpChange = 0;
}

if (noElo || ResourceByMapResourceID.MapIsSpecial == true) // silly map, just process XP
if (noElo || (ResourceByMapResourceID.MapIsSpecial == true) || (ResourceByMapResourceID.MapIsSupported != true)) // silly/unsupported map, just process XP
{
foreach (var r in winners)
{
Expand Down

0 comments on commit a3308b7

Please sign in to comment.