mirror of
https://github.com/correl/mage.git
synced 2025-04-10 17:00:08 -09:00
- Fixed Cruel Reality and Sigarda, Host of Herons interaction.
This commit is contained in:
parent
e9d31aa93c
commit
cb3f0b2a51
2 changed files with 8 additions and 1 deletions
Mage.Sets/src/mage/cards
|
@ -161,6 +161,7 @@ class CruelRealityEffect extends OneShotEffect {
|
|||
}
|
||||
}
|
||||
cursedPlayer.loseLife(5, game, false);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -44,6 +44,7 @@ import mage.game.permanent.PermanentCard;
|
|||
import mage.game.stack.Spell;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.game.stack.StackAbility;
|
||||
|
||||
/**
|
||||
* @author noxx
|
||||
|
@ -115,6 +116,11 @@ class SigardaHostOfHeronsEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
return true;
|
||||
}
|
||||
}
|
||||
if (object instanceof StackAbility) {
|
||||
if (game.getOpponents(source.getControllerId()).contains(((StackAbility) object).getControllerId())) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue