mirror of
https://github.com/correl/mage.git
synced 2025-04-05 01:09:06 -09:00
Fix Veteran Soldier. Closes #9028
This commit is contained in:
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
|
@ -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(),
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue