1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-05 01:09:06 -09:00

Fix Veteran Soldier. Closes

This commit is contained in:
PurpleCrowbar 2023-02-12 12:36:30 +00:00
parent e1ed210b6e
commit a5d53cdb5d
2 changed files with 2 additions and 2 deletions
Mage.Sets/src/mage/cards/v
Mage/src/main/java/mage/abilities/common

View file

@ -60,7 +60,7 @@ class VeteranSoldierEffect extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
for (UUID opponentId : game.getOpponents(source.getControllerId(), true)) {
if (game.getPlayer(opponentId) != null) {
new SoldierToken().putOntoBattlefield(
1, game, source, source.getControllerId(),

View file

@ -39,7 +39,7 @@ public class AttacksOpponentWithMostLifeTriggeredAbility extends TriggeredAbilit
Player defender = game.getPlayer(game.getCombat().getDefenderId(getSourceId()));
return defender != null
&& game
.getOpponents(getControllerId())
.getOpponents(getControllerId(), true)
.stream()
.map(game::getPlayer)
.filter(Objects::nonNull)