- Updated basic land abilities to display mana symbol icons

This commit is contained in:
swordshine
2013-11-14 10:57:51 +00:00
parent ee00b544f7
commit 181a7f5b9c
2 changed files with 2 additions and 2 deletions

View File

@@ -219,7 +219,7 @@ public final class GameActionUtil {
for (int i = 0; i < MagicColor.WUBRG.length; i++ ) {
String landType = Constant.Color.BASIC_LANDS.get(i);
String color = MagicColor.toShortString(MagicColor.WUBRG[i]);
String abString = "AB$ Mana | Cost$ T | Produced$ " + color + " | SpellDescription$ Add " + color + " to your mana pool.";
String abString = "AB$ Mana | Cost$ T | Produced$ " + color + " | SpellDescription$ Add {" + color + "} to your mana pool.";
for (final Card land : lands) {
if (land.isType(landType)) {
final SpellAbility sa = AbilityFactory.getAbility(abString, land);