mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fix transformable card being shown non-transformed on the battlefield.
This commit is contained in:
parent
6c141a1f3e
commit
4c8ca577bd
1 changed files with 1 additions and 1 deletions
|
@ -880,7 +880,7 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti
|
|||
updateImage();
|
||||
if (card.canTransform()) {
|
||||
BufferedImage transformIcon;
|
||||
if (transformed) {
|
||||
if (transformed || card.isTransformed()) {
|
||||
transformIcon = ImageManagerImpl.getInstance().getNightImage();
|
||||
} else {
|
||||
transformIcon = ImageManagerImpl.getInstance().getDayImage();
|
||||
|
|
Loading…
Reference in a new issue