mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user