[INV] Fix Obliterate allowing regeneration

This commit is contained in:
Alex W. Jackson 2023-02-03 15:25:18 -05:00
parent ac0af40cad
commit 8936e1d8b2

View file

@ -32,7 +32,7 @@ public final class Obliterate extends CardImpl {
// Obliterate can't be countered.
this.addAbility(new CantBeCounteredSourceAbility());
// Destroy all artifacts, creatures, and lands. They can't be regenerated.
this.getSpellAbility().addEffect(new DestroyAllEffect(filter));
this.getSpellAbility().addEffect(new DestroyAllEffect(filter, true));
}
private Obliterate(final Obliterate card) {