[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:
emerald000 2016-07-11 22:28:24 -04:00
parent bc8d3f99a9
commit c322b9adad

View file

@ -69,10 +69,10 @@ public abstract class TriggeredAbilityImpl extends AbilityImpl implements Trigge
@Override
public void trigger(Game game, UUID controllerId) {
//20091005 - 603.4
if (checkInterveningIfClause(game)) {
if (!(this instanceof DelayedTriggeredAbility)) {
setSourceObject(null, game);
}
if (checkInterveningIfClause(game)) {
game.addTriggeredAbility(this);
}
}