- Fixed Emrakul, the Aeons Torn shaking of auras like Dragon Breath.

This commit is contained in:
Sloth
2012-09-03 08:45:38 +00:00
parent 068032efb0
commit 3cca3b4efa

View File

@@ -8701,7 +8701,8 @@ public class Card extends GameEntity implements Comparable<Card> {
} }
if (kw.equals("Protection from colored spells") if (kw.equals("Protection from colored spells")
&& (source.isInstant() || source.isSorcery() || source.isAura()) && (source.isInstant() || source.isSorcery()
|| (source.isAura() && !source.isInZone(ZoneType.Battlefield)))
&& CardFactoryUtil.isColored(source)) { && CardFactoryUtil.isColored(source)) {
return true; return true;
} }