mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* True-Name Nemesis - Fixed that the protection ability did not work correctly concerning abilities of cards of target player in graveyard (e.g. Vengeful Pharaoh).
This commit is contained in:
parent
ec5923903e
commit
0aeba13f30
1 changed files with 4 additions and 0 deletions
|
@ -34,6 +34,7 @@ import mage.abilities.Ability;
|
|||
import mage.abilities.common.AsEntersBattlefieldAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.keyword.ProtectionAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
|
@ -154,6 +155,9 @@ class ProtectionFromPlayerAbility extends ProtectionAbility {
|
|||
if (source instanceof StackObject) {
|
||||
return !((StackObject) source).getControllerId().equals(playerId);
|
||||
}
|
||||
if (source instanceof Card) { // e.g. for Vengeful Pharaoh
|
||||
return !((Card) source).getOwnerId().equals(playerId);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue