* Condemn - Added missing return value.

This commit is contained in:
LevelX2 2014-07-25 08:19:40 +02:00
parent 2a9259db8a
commit 4604b076eb

View file

@ -95,6 +95,7 @@ class CondemnEffect extends OneShotEffect {
Player player = game.getPlayer(permanent.getControllerId());
if (player != null) {
player.gainLife(permanent.getToughness().getValue(), game);
return true;
}
}
return false;