forked from External/mage
change enum equals to == for client
This commit is contained in:
parent
a32a02b688
commit
d966c82019
9 changed files with 17 additions and 17 deletions
|
|
@ -296,7 +296,7 @@ public final class GuiDisplayUtil {
|
|||
buffer.append("[only controlled] ");
|
||||
}
|
||||
}
|
||||
if (!card.getMageObjectType().equals(MageObjectType.NULL)) {
|
||||
if (card.getMageObjectType() != MageObjectType.NULL) {
|
||||
buffer.append(card.getMageObjectType().toString());
|
||||
}
|
||||
buffer.append("</td></tr></table>");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue