This commit is contained in:
Nicolas 2013-04-01 19:05:08 +02:00
commit bb0415dc1f
44 changed files with 231 additions and 101 deletions

View file

@ -135,7 +135,8 @@ class CarpetOfFlowersTriggeredAbility extends TriggeredAbilityImpl<CarpetOfFlowe
@Override
public String getRule() {
return "At the beginning of each of your main phases, if you haven't added mana to your mana pool with this ability this turn";
StringBuilder sb = new StringBuilder("At the beginning of each of your main phases, if you haven't added mana to your mana pool with this ability this turn");
return sb.append(super.getRule()).toString();
}
}