Added the missing space character needed for the stack description for the card Timbermaw Larva. Converted the small stack description section of Timbermaw Larva code to use string builder.

This commit is contained in:
jendave
2011-08-06 03:39:53 +00:00
parent 4a1bc4f401
commit b2c12b0c99

View File

@@ -1077,8 +1077,13 @@ public class CombatUtil {
};//ability
ability2.setStackDescription(c.getName() + " - +1/+1 until end of turn for each Forest"
+ charger.getController() + " controls.");
StringBuilder sb = new StringBuilder();
sb.append(c.getName());
sb.append(" - +1/+1 until end of turn for each Forest ");
sb.append(charger.getController());
sb.append(" controls.");
ability2.setStackDescription(sb.toString());
AllZone.Stack.add(ability2);
}//Timbermaw Larva