mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Ghost Council fix
This commit is contained in:
parent
bceda744fd
commit
9b58fb8062
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class GhostCouncilOfOrzhovaEffect extends OneShotEffect {
|
||||||
Player targetPlayer = game.getPlayer(source.getFirstTarget());
|
Player targetPlayer = game.getPlayer(source.getFirstTarget());
|
||||||
Player controllerPlayer = game.getPlayer(source.getControllerId());
|
Player controllerPlayer = game.getPlayer(source.getControllerId());
|
||||||
if (targetPlayer != null && controllerPlayer != null) {
|
if (targetPlayer != null && controllerPlayer != null) {
|
||||||
targetPlayer.damage(1, source.getSourceId(), game, false, true);
|
targetPlayer.loseLife(1, game);
|
||||||
controllerPlayer.gainLife(1, game);
|
controllerPlayer.gainLife(1, game);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue