mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
SetStateEffect.resolve allow Unspecialize in any zone
This commit is contained in:
@@ -94,7 +94,9 @@ public class SetStateEffect extends SpellAbilityEffect {
|
||||
|
||||
// Cards which are not on the battlefield should not be able to transform.
|
||||
// TurnFace should be allowed in other zones like Exile too
|
||||
if (!"TurnFace".equals(mode) && !gameCard.isInPlay() && !sa.hasParam("ETB")) {
|
||||
// Unspecialize is allowed in other zones
|
||||
if (!"TurnFace".equals(mode) && !"Unspecialize".equals(mode) && !gameCard.isInPlay()
|
||||
&& !sa.hasParam("ETB")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user