mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[MOM] fixed game error on Urabrask // The Great Work usage (miss watcher), fixed Jaya Ballard Emblem (miss watcher)
This commit is contained in:
parent
c400df36a3
commit
91542c0c40
2 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,7 @@ public final class TheGreatWork extends CardImpl {
|
|||
this, SagaChapter.CHAPTER_III, new TheGreatWorkCastFromGraveyardEffect(),
|
||||
new TheGreatWorkReplacementEffect(), new ExileSourceAndReturnFaceUpEffect()
|
||||
);
|
||||
this.addAbility(sagaAbility);
|
||||
this.addAbility(sagaAbility, new CastFromGraveyardWatcher());
|
||||
}
|
||||
|
||||
private TheGreatWork(final TheGreatWork card) {
|
||||
|
|
|
@ -31,6 +31,7 @@ public final class JayaBallardEmblem extends Emblem {
|
|||
availableImageSetCodes = Arrays.asList("DOM", "MED");
|
||||
Ability ability = new SimpleStaticAbility(Zone.COMMAND, new JayaBallardCastFromGraveyardEffect());
|
||||
ability.addEffect(new JayaBallardReplacementEffect());
|
||||
ability.addWatcher(new CastFromGraveyardWatcher());
|
||||
this.getAbilities().add(ability);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue