* Widespread Panic - Fixed that it also triggered if the library was shuffled by an ability controlled by another player (e.g. Knowledge Exploitation).

This commit is contained in:
LevelX2 2016-03-07 16:16:59 +01:00
parent f95921cc73
commit b86dd17c54
201 changed files with 340 additions and 247 deletions

View file

@ -63,7 +63,7 @@ public class ShuffleSpellEffect extends OneShotEffect implements MageSingleton {
if (controller.moveCards(spell, Zone.LIBRARY, source, game) && !spell.isCopy()) {
Player owner = game.getPlayer(spell.getCard().getOwnerId());
if (owner != null) {
owner.shuffleLibrary(game);
owner.shuffleLibrary(source, game);
}
}