[SPE] fix Sensational Spider-Man not targeting at all

This commit is contained in:
theelk801 2025-08-28 09:43:44 -04:00
parent 0835f49ba3
commit 36aaf3460f

View file

@ -95,7 +95,7 @@ class SensationalSpiderManEffect extends OneShotEffect {
// TODO: this ideally would be able to prevent the player from choosing a number greater than the number of stun counters available to remove // TODO: this ideally would be able to prevent the player from choosing a number greater than the number of stun counters available to remove
TargetPermanentAmount target = new TargetPermanentAmount(3, 0, filter); TargetPermanentAmount target = new TargetPermanentAmount(3, 0, filter);
target.withNotTarget(true); target.withNotTarget(true);
player.choose(outcome, target, source, game); player.chooseTarget(outcome, target, source, game);
int amountRemoved = target int amountRemoved = target
.getTargets() .getTargets()
.stream() .stream()