forked from External/mage
[OTJ] Fix incorrect duration for Rakdos
This commit is contained in:
parent
dfa53b411f
commit
7f791fab3e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue