mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* It That Betrays - Fixed that target handling of second triggered ability did not work correct (fixes #4568).
This commit is contained in:
parent
753e039d02
commit
dbfb708e44
1 changed files with 9 additions and 11 deletions
|
@ -55,10 +55,8 @@ public class OpponentSacrificesNonTokenPermanentTriggeredAbility extends Trigger
|
|||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
if (game.getPlayer(getControllerId()).hasOpponent(event.getPlayerId(), game)) {
|
||||
Permanent permanent = (Permanent) game.getLastKnownInformation(event.getTargetId(), Zone.BATTLEFIELD);
|
||||
if (permanent != null && !(permanent instanceof PermanentToken) ) {
|
||||
for (Effect effect : getEffects()) {
|
||||
effect.setTargetPointer(new FixedTarget(event.getTargetId()));
|
||||
}
|
||||
if (permanent != null && !(permanent instanceof PermanentToken)) {
|
||||
getEffects().setTargetPointer(new FixedTarget(permanent, game));
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue