mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
Fixed NPE in tooltips for Emblem choose-trigger
This commit is contained in:
parent
845d3a7951
commit
922e35ff1c
3 changed files with 11 additions and 14 deletions
|
|
@ -32,7 +32,8 @@ public enum MageObjectType {
|
|||
SPELL ("Spell", false, true),
|
||||
PERMANENT ("Permanent", true, true),
|
||||
EMBLEM ("Emblem", false, false),
|
||||
COMMANDER ("Commander", false, false);
|
||||
COMMANDER ("Commander", false, false),
|
||||
NULL("NullObject", false, false);
|
||||
|
||||
private final String text;
|
||||
private final boolean permanent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue