mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Fix #9649 and clean up counter effect text generation
This commit is contained in:
parent
5ec2cd0378
commit
332db3aecb
17 changed files with 117 additions and 374 deletions
|
|
@ -46,6 +46,10 @@ class DustOfMomentsEffect extends OneShotEffect {
|
|||
private static final FilterPermanentOrSuspendedCard filter = new FilterPermanentOrSuspendedCard();
|
||||
private final boolean remove;
|
||||
|
||||
static {
|
||||
filter.getPermanentFilter().add(CounterType.TIME.getPredicate());
|
||||
}
|
||||
|
||||
DustOfMomentsEffect(boolean remove) {
|
||||
super(Outcome.Benefit);
|
||||
this.remove = remove;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue