fix verify failure

This commit is contained in:
Evan Kranzler 2022-11-05 12:28:10 -04:00 committed by GitHub
parent a3dac3962e
commit 17e676118b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ public final class Bushwhack extends CardImpl {
));
// * Target creature you control fights target creature you don't control.
this.getSpellAbility().addMode(new Mode(new FightTargetsEffect(false))
this.getSpellAbility().addMode(new Mode(new FightTargetsEffect())
.addTarget(new TargetControlledCreaturePermanent())
.addTarget(new TargetPermanent(StaticFilters.FILTER_CREATURE_YOU_DONT_CONTROL)));
}