mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
- Fixed issue #2075
This commit is contained in:
parent
1346949368
commit
9b5a02c09c
3 changed files with 45 additions and 37 deletions
|
|
@ -17,6 +17,7 @@ import mage.client.util.GUISizeHelper;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.MageObjectType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.utils.CardUtil;
|
||||
import mage.view.CardView;
|
||||
import mage.view.CounterView;
|
||||
|
|
@ -344,6 +345,11 @@ public class GuiDisplayUtil {
|
|||
buffer.append(ManaSymbols.replaceSymbolsWithHTML(legal, ManaSymbols.Type.TOOLTIP));
|
||||
}
|
||||
|
||||
Zone zone = card.getZone();
|
||||
if (zone != null) {
|
||||
buffer.append("<p style='margin: 2px'><b>Card Zone:</b> ").append(zone).append("</p>");
|
||||
}
|
||||
|
||||
buffer.append("<br></body></html>");
|
||||
return buffer;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue