From d03d65190e472a46f2390a3c35409cfc90371428 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 11 Sep 2016 10:18:10 +0200 Subject: [PATCH] * Fixed a bug of Fate Reforged booster generation adding wrong rarities. --- Mage.Sets/src/mage/sets/FateReforged.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/FateReforged.java b/Mage.Sets/src/mage/sets/FateReforged.java index f0030104ba..a44b082318 100644 --- a/Mage.Sets/src/mage/sets/FateReforged.java +++ b/Mage.Sets/src/mage/sets/FateReforged.java @@ -59,7 +59,7 @@ public class FateReforged extends ExpansionSet { this.parentSet = KhansOfTarkir.getInstance(); this.hasBasicLands = false; this.hasBoosters = true; - this.numBoosterSpecial = 1; // a speical land slot that can contain basic lands (language dependent) the common lands or the rare fetch lands from KTK + this.numBoosterSpecial = 1; // a special land slot that can contain basic lands (language dependent) the common lands or the rare fetch lands from KTK this.numBoosterLands = 0; this.numBoosterCommon = 10; this.numBoosterUncommon = 3; @@ -75,6 +75,7 @@ public class FateReforged extends ExpansionSet { List savedCardsInfos = savedCards.get(rarity); if (savedCardsInfos == null) { CardCriteria criteria = new CardCriteria(); + criteria.rarities(Rarity.COMMON); criteria.setCodes(this.code).notTypes(CardType.LAND); if (maxCardNumberInBooster != Integer.MAX_VALUE) { criteria.maxCardNumber(maxCardNumberInBooster);