Fix [LTC] Model of Unity

This commit is contained in:
xenohedron 2023-06-19 20:14:22 -04:00
parent f77e4a99f9
commit 09676667be
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class ModelOfUnityEffect extends OneShotEffect {
}
Player player = game.getPlayer(opponentId);
if (player != null && player.chooseUse(outcome, "Scry 2?", source, game)) {
player.loseLife(2, game, source, false);
player.scry(2, source, game);
}
}
return true;