mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
* Bound by Moonsilver - Fixed tooltip text.
This commit is contained in:
parent
043a3b50cc
commit
3d740a69dd
2 changed files with 17 additions and 5 deletions
|
|
@ -32,6 +32,7 @@ import mage.abilities.ActivatedAbilityImpl;
|
|||
import mage.abilities.condition.Condition;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.constants.TimingRule;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Game;
|
||||
import mage.util.CardUtil;
|
||||
|
|
@ -119,6 +120,9 @@ public class LimitedTimesPerTurnActivatedAbility extends ActivatedAbilityImpl {
|
|||
if (condition != null) {
|
||||
sb.append("only ").append(condition.toString()).append(" and ");
|
||||
}
|
||||
if (getTiming().equals(TimingRule.SORCERY)) {
|
||||
sb.append("only any time you could cast a sorcery and ");
|
||||
}
|
||||
switch (maxActivationsPerTurn) {
|
||||
case 1:
|
||||
sb.append("only once");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue