Fix Zone to match on Transpose

This commit is contained in:
Grath 2025-06-13 21:34:32 -04:00
parent d6709cd7e9
commit 030e8ae5d3

View file

@ -57,7 +57,7 @@ enum TransposeCondition implements Condition {
.map(Ability::getSourceId) .map(Ability::getSourceId)
.map(game::getSpell) .map(game::getSpell)
.map(Spell::getFromZone) .map(Spell::getFromZone)
.map(Zone.GRAVEYARD::match) .map(Zone.HAND::match)
.orElse(false); .orElse(false);
} }