mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Golden Guardian - Fixed that the death trigger did not work correctly.
This commit is contained in:
parent
fcfb431290
commit
2cb86e2fc0
1 changed files with 1 additions and 4 deletions
|
@ -151,10 +151,7 @@ class GoldenGuardianDelayedTriggeredAbility extends DelayedTriggeredAbility {
|
|||
|
||||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
if (((ZoneChangeEvent) event).isDiesEvent()) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return ((ZoneChangeEvent) event).isDiesEvent() && event.getTargetId().equals(getSourceId());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue