mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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) {
|
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||||
Player you = game.getPlayer(event.getPlayerId());
|
Player you = game.getPlayer(event.getPlayerId());
|
||||||
if (you != null) {
|
if (you != null) {
|
||||||
you.drawCards(2, game);
|
you.drawCards(2, game, event.getAppliedEffects());
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue