mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
fixed constant imports in templates
This commit is contained in:
parent
0bb110be45
commit
179f7200ec
2 changed files with 3 additions and 3 deletions
|
@ -28,8 +28,8 @@
|
|||
package mage.sets.[=$set=];
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;[=
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;[=
|
||||
if ($power || $power eq 0) {
|
||||
$OUT .= "\nimport mage.MageInt;"
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
*/
|
||||
package mage.sets.[=$set=];
|
||||
|
||||
import java.util.UUID;[= if ($rarityExtended) {$OUT .= "\nimport mage.Constants.Rarity;"}=]
|
||||
import java.util.UUID;[= if ($rarityExtended) {$OUT .= "\nimport mage.constants.Rarity;"}=]
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue