forked from External/mage
Refactor name of minimum deck size (was startingHandSize) (#10628)
* Refactor: rename starting hand size, it was actually minimum deck size (40, 60 or 100 most of the time)
This commit is contained in:
parent
a7f78e8190
commit
b960b77774
15 changed files with 36 additions and 31 deletions
|
|
@ -41,8 +41,8 @@ public class CompanionAbility extends SpecialAction {
|
|||
return "Companion — " + companionCondition.getRule();
|
||||
}
|
||||
|
||||
public final boolean isLegal(Set<Card> cards, int startingHandSize) {
|
||||
return companionCondition.isLegal(cards, startingHandSize);
|
||||
public final boolean isLegal(Set<Card> cards, int minimumDeckSize) {
|
||||
return companionCondition.isLegal(cards, minimumDeckSize);
|
||||
}
|
||||
|
||||
public final String getLegalRule() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue