mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Fix attempt
This commit is contained in:
parent
310764814f
commit
4c5dc3f839
1 changed files with 2 additions and 2 deletions
|
|
@ -2321,7 +2321,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
}
|
||||
do {
|
||||
if (newTarget.choose(Outcome.Neutral, playerId, targetPlayerId, game)) {
|
||||
if (targetPlayerId.equals(playerId) && handleLibraryCastableCreatures(library, game, targetPlayerId)) { // for handling Panglacial Wurm
|
||||
if (targetPlayerId.equals(playerId) && this.handleLibraryCastableCreatures(library, game, targetPlayerId)) { // for handling Panglacial Wurm
|
||||
newTarget.clearChosen();
|
||||
continue;
|
||||
}
|
||||
|
|
@ -2330,7 +2330,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
target.add(targetId, game);
|
||||
}
|
||||
game.fireEvent(GameEvent.getEvent(GameEvent.EventType.LIBRARY_SEARCHED, targetPlayerId, playerId));
|
||||
} else if (targetPlayerId.equals(playerId) && handleLibraryCastableCreatures(library, game, targetPlayerId)) {
|
||||
} else if (targetPlayerId.equals(playerId) && this.handleLibraryCastableCreatures(library, game, targetPlayerId)) {
|
||||
newTarget.clearChosen();
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue