- Reduce number of wins needed for gaining Packs for number of Wins

This commit is contained in:
Sol
2011-09-01 01:38:26 +00:00
parent 753c903425
commit cf69748630

View File

@@ -159,7 +159,7 @@ public class ReadBoosterPack implements NewConstants {
// Number of Packs granted
int levelPacks = questLevel > 0 ? 8 / questLevel / 2 : 4;
int winPacks = numberWins / 15;
int winPacks = numberWins / 10;
int totalPacks = Math.min(levelPacks + winPacks, 6);