[MOM] fixed game error on Urabrask // The Great Work usage (miss watcher), fixed Jaya Ballard Emblem (miss watcher)

This commit is contained in:
Oleg Agafonov 2023-04-19 18:51:45 +04:00
parent c400df36a3
commit 91542c0c40
2 changed files with 2 additions and 1 deletions

View file

@ -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) {

View file

@ -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);
}
}