mirror of
https://github.com/correl/mage.git
synced 2024-11-22 03:00:11 +00:00
Elrond, Lord of Rivendell - fixed game error on usage (miss watcher)
This commit is contained in:
parent
b340ab3b73
commit
c61095e2eb
1 changed files with 2 additions and 1 deletions
|
@ -12,6 +12,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.watchers.common.AbilityResolvedWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -35,7 +36,7 @@ public final class ElrondLordOfRivendell extends CardImpl {
|
|||
StaticFilters.FILTER_PERMANENT_CREATURE, false, true
|
||||
);
|
||||
ability.addEffect(new IfAbilityHasResolvedXTimesEffect(2, new TheRingTemptsYouEffect()));
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability, new AbilityResolvedWatcher());
|
||||
}
|
||||
|
||||
private ElrondLordOfRivendell(final ElrondLordOfRivendell card) {
|
||||
|
|
Loading…
Reference in a new issue