mirror of
https://github.com/correl/mage.git
synced 2024-11-29 03:00:12 +00:00
Fix Balor third ability. Closes #9740
This commit is contained in:
parent
aef71f20a4
commit
98cb932dfc
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ class BalorEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(game.getActivePlayerId());
|
||||
Player player = game.getPlayer(source.getFirstTarget());
|
||||
return player != null
|
||||
&& player.getHand().size() >= 1
|
||||
&& player.damage(player.getHand().size(), source.getSourceId(), source, game) > 0;
|
||||
|
|
Loading…
Reference in a new issue