mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fixes on new cards
This commit is contained in:
parent
98f910a892
commit
425858e413
11 changed files with 93 additions and 65 deletions
|
|
@ -23,10 +23,10 @@ public class IfAbilityHasResolvedXTimesEffect extends OneShotEffect {
|
|||
this(effect.getOutcome(), resolutionNumber, effect);
|
||||
}
|
||||
|
||||
public IfAbilityHasResolvedXTimesEffect(Outcome outcome, int resolutionNumber, Effect... effect) {
|
||||
public IfAbilityHasResolvedXTimesEffect(Outcome outcome, int resolutionNumber, Effect... effects) {
|
||||
super(outcome);
|
||||
this.resolutionNumber = resolutionNumber;
|
||||
this.effects = new Effects(effect);
|
||||
this.effects = new Effects(effects);
|
||||
}
|
||||
|
||||
private IfAbilityHasResolvedXTimesEffect(final IfAbilityHasResolvedXTimesEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue