mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
* Deep Analysis - Fixed that its flashback costs did not work with mana casting cost modification effects (fixes #4677).
This commit is contained in:
parent
8621ecdd6f
commit
1e2e53073c
5 changed files with 81 additions and 16 deletions
|
|
@ -74,6 +74,12 @@ public final class StaticFilters {
|
|||
FILTER_CARD_A_NON_LAND.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterInstantOrSorceryCard FILTER_CARD_INSTANT_OR_SORCERY = new FilterInstantOrSorceryCard();
|
||||
|
||||
static {
|
||||
FILTER_CARD_INSTANT_OR_SORCERY.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterPermanent FILTER_PERMANENT = new FilterPermanent();
|
||||
|
||||
static {
|
||||
|
|
@ -236,7 +242,7 @@ public final class StaticFilters {
|
|||
static {
|
||||
FILTER_BASIC_LAND_CARD.setLockedFilter(true);
|
||||
}
|
||||
|
||||
|
||||
// Used for sacrifice targets that don't need the "you control" text
|
||||
public static final FilterControlledLandPermanent FILTER_CONTROLLED_LAND_SHORT_TEXT = new FilterControlledLandPermanent("a land");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue