Blessed Incarnation used wrong shuffle method

This commit is contained in:
Ingmar Goudt 2019-06-04 22:18:39 +02:00
parent 1a419f7f5b
commit 58185670ad

View file

@ -91,8 +91,7 @@ class BlessedReincarnationEffect extends OneShotEffect {
} }
permanentController.revealCards(source, toReveal, game); permanentController.revealCards(source, toReveal, game);
if (toReveal.size() > 1) { if (toReveal.size() > 1) {
library.shuffle(); permanentController.shuffleLibrary(source, game); }
}
} }
} }
return true; return true;