[OTJ] Fix incorrect duration for Rakdos

This commit is contained in:
Susucre 2024-04-04 14:56:16 +02:00
parent dfa53b411f
commit 7f791fab3e

View file

@ -112,7 +112,7 @@ class RakdosTheMuscleEffect extends OneShotEffect {
// remove cards that could not be moved to exile
cards.removeIf(card -> !Zone.EXILED.equals(game.getState().getZone(card.getId())));
for (Card card : cards) {
CardUtil.makeCardPlayable(game, source, card, Duration.EndOfTurn, true, controller.getId(), null);
CardUtil.makeCardPlayable(game, source, card, Duration.UntilYourNextEndStep, true, controller.getId(), null);
}
return true;
}