mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00: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…
Reference in a new issue