* Added a simple identifier to tooltip and game log to be able to identify the exact target if multiple objects with the same name exist.

This commit is contained in:
LevelX2 2015-05-12 17:30:14 +02:00
parent e2cb40de70
commit 28d46e2a95
2 changed files with 2 additions and 2 deletions

View file

@ -192,7 +192,7 @@ public class GuiDisplayUtil {
buffer.append("pt;margin:0px 1px 0px 1px'>");
buffer.append("<table cellspacing=0 cellpadding=0 border=0 width='100%'>");
buffer.append("<tr><td valign='top'><b>");
buffer.append(card.getDisplayName());
buffer.append(card.getDisplayName()).append(" [").append(card.getId().toString().substring(0,3)).append("]");
buffer.append("</b></td><td align='right' valign='top' style='width:");
buffer.append(symbolCount * 11 + 1);
buffer.append("px'>");