mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
* Thought Reflection - fixed endless loop if more than one Thought Refelection in play for one player.
This commit is contained in:
parent
7488679872
commit
6daa90e449
1 changed files with 2 additions and 2 deletions
|
@ -94,7 +94,7 @@ class ThoughtReflectionReplacementEffect extends ReplacementEffectImpl<ThoughtRe
|
|||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||
Player you = game.getPlayer(event.getPlayerId());
|
||||
if (you != null) {
|
||||
you.drawCards(2, game);
|
||||
you.drawCards(2, game, event.getAppliedEffects());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -107,4 +107,4 @@ class ThoughtReflectionReplacementEffect extends ReplacementEffectImpl<ThoughtRe
|
|||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue