mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
[ATQ] Fix Rocket Launcher condition (was inverted) and text
This commit is contained in:
parent
cf9a2f936a
commit
445b51b98b
1 changed files with 7 additions and 2 deletions
|
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue