Fix Teferi, Time Raveler behavior and ignore W6 emblem failure for now.

This commit is contained in:
Patrick Hulin 2019-12-10 14:24:35 -05:00
parent d3ee51c155
commit fbc88f152e
4 changed files with 18 additions and 10 deletions

View file

@ -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;