mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Minor change to rule text generation.
This commit is contained in:
parent
ac1f6d5512
commit
36cd392a02
1 changed files with 3 additions and 1 deletions
|
|
@ -121,7 +121,9 @@ public class GainAbilityAllEffect extends ContinuousEffectImpl<GainAbilityAllEff
|
||||||
sb.append(" gain ");
|
sb.append(" gain ");
|
||||||
}
|
}
|
||||||
sb.append(ability.getRule());
|
sb.append(ability.getRule());
|
||||||
sb.append(" ").append(duration.toString());
|
if (duration.toString().length() > 0) {
|
||||||
|
sb.append(" ").append(duration.toString());
|
||||||
|
}
|
||||||
staticText = sb.toString();
|
staticText = sb.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue