[TDC] Implement Redoubled Stormsinger

This commit is contained in:
theelk801 2025-04-10 08:47:59 -04:00
parent 9e6987ab56
commit f3ffca26fa
3 changed files with 103 additions and 8 deletions

View file

@ -22,14 +22,7 @@ public class FixedTargets extends TargetPointerImpl {
final ArrayList<MageObjectReference> targets = new ArrayList<>();
public FixedTargets(List<Permanent> objects, Game game) {
this(objects
.stream()
.map(o -> new MageObjectReference(o.getId(), game))
.collect(Collectors.toList()));
}
public FixedTargets(Set<Card> objects, Game game) {
public FixedTargets(Collection<? extends Card> objects, Game game) {
this(objects
.stream()
.map(o -> new MageObjectReference(o.getId(), game))