[ATQ] Fix Rocket Launcher condition (was inverted) and text

This commit is contained in:
Alex W. Jackson 2022-02-28 07:24:32 -05:00
parent cf9a2f936a
commit 445b51b98b

View file

@ -53,6 +53,11 @@ enum RocketLauncherCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
Permanent permanent = source.getSourcePermanentIfItStillExists(game);
return permanent != null && !permanent.wasControlledFromStartOfControllerTurn();
return permanent != null && permanent.wasControlledFromStartOfControllerTurn();
}
}
@Override
public String toString() {
return "you've controlled {this} continuously since the beginning of your most recent turn";
}
}