mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[EMN] Fixed melding not working after the meld pieces return to the battlefield.
Such as returning from under an Oblivion Ring.
This commit is contained in:
parent
bc8d3f99a9
commit
c322b9adad
1 changed files with 3 additions and 3 deletions
|
@ -69,10 +69,10 @@ public abstract class TriggeredAbilityImpl extends AbilityImpl implements Trigge
|
||||||
@Override
|
@Override
|
||||||
public void trigger(Game game, UUID controllerId) {
|
public void trigger(Game game, UUID controllerId) {
|
||||||
//20091005 - 603.4
|
//20091005 - 603.4
|
||||||
if (checkInterveningIfClause(game)) {
|
|
||||||
if (!(this instanceof DelayedTriggeredAbility)) {
|
if (!(this instanceof DelayedTriggeredAbility)) {
|
||||||
setSourceObject(null, game);
|
setSourceObject(null, game);
|
||||||
}
|
}
|
||||||
|
if (checkInterveningIfClause(game)) {
|
||||||
game.addTriggeredAbility(this);
|
game.addTriggeredAbility(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue