Update ExpansionSet.java

This commit is contained in:
Chatziargyriou Eleftheria 2018-06-22 20:09:36 +03:00 committed by GitHub
parent 4f84065c0e
commit 25d7f9c83b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ public abstract class ExpansionSet implements Serializable {
protected int numBoosterDoubleFaced; // -1 = include normally 0 = exclude 1-n = include explicit
protected int ratioBoosterMythic;
protected boolean needsLegends = false;
protected boolean PartnerMechanic = false;
protected boolean hasPartnerMechanic = false;
protected int maxCardNumberInBooster; // used to omit cards with collector numbers beyond the regular cards in a set for boosters
@ -231,7 +231,7 @@ public abstract class ExpansionSet implements Serializable {
}
}
//Battlebond packs alway contain both partners
if (PartnerMechanic){
if (hasPartnerMechanic){
List<Card> booster = createPartnerBooster();
return booster;
}