add a newline to the formatting of "*Enchanted by <aura>*"

This commit is contained in:
jendave
2011-08-06 04:23:10 +00:00
parent 9561406625
commit caec63b3bc

View File

@@ -206,6 +206,7 @@ public class CardDetailPanel extends JPanel implements CardContainer {
//enchanted by //enchanted by
if(card.getEnchantedBy().size() > 0) { if(card.getEnchantedBy().size() > 0) {
if(area.length() != 0) area.append("\n");
area.append("*Enchanted by "); area.append("*Enchanted by ");
for(Iterator<Card> it = card.getEnchantedBy().iterator(); it.hasNext();) { for(Iterator<Card> it = card.getEnchantedBy().iterator(); it.hasNext();) {
area.append(it.next()); area.append(it.next());