mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
Merge pull request #8171 from kevlahnota/newMaster
QOL Groupby CardType Land
This commit is contained in:
@@ -102,10 +102,10 @@ public enum GroupDef {
|
||||
return 2;
|
||||
}
|
||||
if (type.isArtifact()) {
|
||||
return 4;
|
||||
return type.isLand() ? 6 : 4;
|
||||
}
|
||||
if (type.isEnchantment()) {
|
||||
return 5;
|
||||
return type.isLand() ? 6 : 5;
|
||||
}
|
||||
if (type.isBattle()) {
|
||||
return 7;
|
||||
|
||||
Reference in New Issue
Block a user