forked from External/mage
Fix Teferi, Time Raveler behavior and ignore W6 emblem failure for now.
This commit is contained in:
parent
d3ee51c155
commit
fbc88f152e
4 changed files with 18 additions and 10 deletions
|
|
@ -509,7 +509,8 @@ public class ContinuousEffects implements Serializable {
|
|||
Card card = game.getCard(objectId);
|
||||
if (card != null && card instanceof SplitCardHalf) {
|
||||
idToCheck = ((SplitCardHalf) card).getParentCard().getId();
|
||||
} else if (card != null && card instanceof AdventureCardSpell) {
|
||||
} else if (card != null && type == AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE
|
||||
&& card instanceof AdventureCardSpell) {
|
||||
idToCheck = ((AdventureCardSpell) card).getParentCard().getId();
|
||||
} else {
|
||||
idToCheck = objectId;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue