mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
some requested fixes
This commit is contained in:
parent
17db6be4aa
commit
f4ebb67abf
2 changed files with 2 additions and 4 deletions
|
|
@ -86,7 +86,7 @@ class DoomsdayExcruciatorEffect extends OneShotEffect {
|
|||
}
|
||||
int amount = player.getLibrary().size() - 6;
|
||||
if (amount > 0) {
|
||||
player.getLibrary().getTopCards(game, amount);
|
||||
cards.addAllCards(player.getLibrary().getTopCards(game, amount));
|
||||
}
|
||||
}
|
||||
controller.moveCards(cards, Zone.EXILED, source, game);
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ import mage.abilities.hint.Hint;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.ComparisonType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterPermanent;
|
||||
|
|
@ -24,8 +23,7 @@ import java.util.UUID;
|
|||
public final class PearlOfWisdom extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterControlledPermanent(SubType.OTTER, "you control an Otter");
|
||||
private static final Condition condition
|
||||
= new PermanentsOnTheBattlefieldCondition(filter, ComparisonType.MORE_THAN, 1);
|
||||
private static final Condition condition = new PermanentsOnTheBattlefieldCondition(filter);
|
||||
private static final Hint hint = new ConditionHint(condition, "You control an Otter");
|
||||
|
||||
public PearlOfWisdom(UUID ownerId, CardSetInfo setInfo) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue