mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Uncommon Rare Common order
This commit is contained in:
parent
878be187d1
commit
dea3bdd879
1 changed files with 1 additions and 1 deletions
|
|
@ -233,9 +233,9 @@ class PlaneshiftCollator implements BoosterCollator {
|
||||||
@Override
|
@Override
|
||||||
public List<String> makeBooster() {
|
public List<String> makeBooster() {
|
||||||
List<String> booster = new ArrayList<>();
|
List<String> booster = new ArrayList<>();
|
||||||
booster.addAll(commonRuns.getNext().makeRun());
|
|
||||||
booster.addAll(uncommonRuns.getNext().makeRun());
|
booster.addAll(uncommonRuns.getNext().makeRun());
|
||||||
booster.addAll(rareRuns.getNext().makeRun());
|
booster.addAll(rareRuns.getNext().makeRun());
|
||||||
|
booster.addAll(commonRuns.getNext().makeRun());
|
||||||
return booster;
|
return booster;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue