Merge pull request #8171 from kevlahnota/newMaster

QOL Groupby CardType Land
This commit is contained in:
kevlahnota
2025-07-23 22:13:43 +08:00
committed by GitHub

View File

@@ -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;