forked from External/mage
Added missing AbilityResolvedWatcher to Sizzling Soloist and Venom Connoisseur. (#9869)
This commit is contained in:
parent
12baf4594c
commit
8872fa3244
2 changed files with 4 additions and 2 deletions
|
|
@ -12,6 +12,7 @@ import mage.constants.*;
|
|||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.common.TargetOpponentsCreaturePermanent;
|
||||
import mage.watchers.common.AbilityResolvedWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -34,7 +35,7 @@ public final class SizzlingSoloist extends CardImpl {
|
|||
Outcome.Benefit, 2, new SizzlingSoloistEffect()
|
||||
));
|
||||
ability.addTarget(new TargetOpponentsCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability, new AbilityResolvedWatcher());
|
||||
}
|
||||
|
||||
private SizzlingSoloist(final SizzlingSoloist card) {
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ import mage.constants.Duration;
|
|||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.watchers.common.AbilityResolvedWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -41,7 +42,7 @@ public final class VenomConnoisseur extends CardImpl {
|
|||
StaticFilters.FILTER_CONTROLLED_CREATURE
|
||||
).setText("all creatures you control gain deathtouch until end of turn")
|
||||
));
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability, new AbilityResolvedWatcher());
|
||||
}
|
||||
|
||||
private VenomConnoisseur(final VenomConnoisseur card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue