Fix Power Play title track's goal

This commit is contained in:
cnr 2016-12-15 00:44:31 -07:00
parent 777574a8ff
commit 2ab9bc2c88
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class PowerPlayTrack extends Track
.addTier(new TrackTier(
"Power Play Club",
null,
player -> _powerPlayClubRepository.getCachedData(player).getUnclaimedMonths().isEmpty() ? 0L : 1L,
player -> _powerPlayClubRepository.getCachedData(player).isSubscribed() ? 1L : 0L,
1,
new TrackFormat(ChatColor.AQUA, ChatColor.AQUA)
));