Fix Surrounded by Orcs

This commit is contained in:
xenohedron 2023-07-19 20:02:45 -04:00
parent 41ec219efb
commit f4e77d0f9a

View file

@ -61,6 +61,7 @@ class SurroundedByOrcsEffect extends OneShotEffect {
if (permanent == null || player == null) { if (permanent == null || player == null) {
return false; return false;
} }
game.getState().processAction(game);
player.millCards(permanent.getPower().getValue(), source, game); player.millCards(permanent.getPower().getValue(), source, game);
return true; return true;
} }