mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Reduce number of wins needed for gaining Packs for number of Wins
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user