mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
add shuffle to Manipulate Fate
This commit is contained in:
parent
4ae6784164
commit
b60a0ac006
1 changed files with 4 additions and 2 deletions
|
@ -27,8 +27,6 @@
|
|||
*/
|
||||
package mage.cards.m;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.SearchEffect;
|
||||
|
@ -43,6 +41,9 @@ import mage.game.Game;
|
|||
import mage.players.Player;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author emerald000
|
||||
|
@ -100,6 +101,7 @@ class ManipulateFateEffect extends SearchEffect {
|
|||
}
|
||||
return true;
|
||||
}
|
||||
player.shuffleLibrary(source, game);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue