Skip to content

Commit

Permalink
Don't require MVP+ for MVP++
Browse files Browse the repository at this point in the history
* Admins can gift MVP++ subscription
  • Loading branch information
builder-247 authored and ChristianDobbie committed Jan 10, 2022
1 parent 5eb7190 commit 0179d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processors/processPlayerData.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function getPlayerRank(rank, packageRank, newPackageRank, monthlyPackageRank) {
playerRank = rank || newPackageRank || packageRank || null;
}

if (playerRank === 'MVP_PLUS' && monthlyPackageRank === 'SUPERSTAR') {
if (monthlyPackageRank === 'SUPERSTAR') {
playerRank = 'MVP_PLUS_PLUS';
}

Expand Down

0 comments on commit 0179d30

Please sign in to comment.