mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed Issue 62
This commit is contained in:
parent
e92ccb7b2f
commit
1decdf31f4
1 changed files with 4 additions and 1 deletions
|
@ -75,8 +75,11 @@ public class CardInfoPaneImpl extends JEditorPane implements CardInfoPane {
|
||||||
}
|
}
|
||||||
rulings.add(sb.toString());
|
rulings.add(sb.toString());
|
||||||
}
|
}
|
||||||
|
int damage = ((PermanentView)card).getDamage();
|
||||||
|
if (damage > 0) {
|
||||||
|
rulings.add("<span color='red'><b>Damage dealt:</b> " + damage + "</span>");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
boolean smallImages = true;
|
boolean smallImages = true;
|
||||||
int fontSize = 11;
|
int fontSize = 11;
|
||||||
|
|
Loading…
Reference in a new issue