Skip to content

Commit

Permalink
Update SpellAbilityEffect.java
Browse files Browse the repository at this point in the history
  • Loading branch information
tool4ever authored Jan 14, 2025
1 parent 7fe74f5 commit 7faeda3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ protected static boolean checkValidDuration(String duration, SpellAbility sa) {
if (("AsLongAsControl".equals(duration) || "AsLongAsInPlay".equals(duration)) && hostCard.isPhasedOut()) {
return false;
}
if (("UntilLoseControlOfHost".equals(duration) || "ForAsLongAsControl".equals(duration)) && hostCard.getController() != sa.getActivatingPlayer()) {
if (("UntilLoseControlOfHost".equals(duration) || "AsLongAsControl".equals(duration)) && hostCard.getController() != sa.getActivatingPlayer()) {
return false;
}
if ("UntilUntaps".equals(duration) && !hostCard.isTapped()) {
Expand Down

0 comments on commit 7faeda3

Please sign in to comment.