mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[KHM] a few small changes to Cosima, God of the Voyage
This commit is contained in:
parent
d056f6cec2
commit
9d5ffd541e
1 changed files with 2 additions and 2 deletions
|
@ -136,8 +136,7 @@ class CosimaGodOfTheVoyageGainAbilityEffect extends ContinuousEffectImpl {
|
|||
if (card != null && game.getState().getZone(card.getId()) == Zone.EXILED) {
|
||||
Ability ability = new CosimaGodOfTheVoyageTriggeredAbility();
|
||||
ability.setSourceId(card.getId());
|
||||
ability.setControllerId(source.getSourceId());
|
||||
game.getState().addAbility(ability, card);
|
||||
ability.setControllerId(source.getControllerId());
|
||||
game.getState().addOtherAbility(card, ability);
|
||||
} else {
|
||||
discard();
|
||||
|
@ -269,6 +268,7 @@ class TheOmenkeelPlayFromExileEffect extends AsThoughEffectImpl {
|
|||
|
||||
private TheOmenkeelPlayFromExileEffect(final TheOmenkeelPlayFromExileEffect effect) {
|
||||
super(effect);
|
||||
this.morSet.addAll(effect.morSet);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue