* Oreskos Explorer - fixed rollback error;

This commit is contained in:
Oleg Agafonov 2020-01-12 02:30:51 +04:00
parent d12d1fffaf
commit 49d7dfa411

View file

@ -1,7 +1,5 @@
package mage.cards.o;
import java.util.UUID;
import mage.MageInt;
import mage.MageObject;
import mage.abilities.Ability;
@ -11,15 +9,19 @@ import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.cards.Cards;
import mage.cards.CardsImpl;
import mage.constants.*;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.SubType;
import mage.constants.Zone;
import mage.filter.common.FilterLandCard;
import mage.filter.common.FilterLandPermanent;
import mage.game.Game;
import mage.players.Player;
import mage.target.common.TargetCardInLibrary;
import java.util.UUID;
/**
*
* @author LevelX2
*/
public final class OreskosExplorer extends CardImpl {
@ -82,10 +84,9 @@ class OreskosExplorerEffect extends OneShotEffect {
}
if (landsToSearch > 0) {
FilterLandCard filterPlains = new FilterLandCard("up to " + landsToSearch + " Plains cards");
filterPlains.add(TargetController.YOU.getControllerPredicate());
filterPlains.add(SubType.PLAINS.getPredicate());
TargetCardInLibrary target = new TargetCardInLibrary(0, landsToSearch, filterPlains);
if (controller.searchLibrary(target, source, game)) {
if (controller.searchLibrary(target, source, game, controller.getId())) {
Cards cards = new CardsImpl(target.getTargets());
controller.revealCards(sourceObject.getIdName(), cards, game);
controller.moveCards(cards.getCards(game), Zone.HAND, source, game);