Skip to content

Commit 812f044

Browse files
committed
Don't include minor pack format in pack.mcmeta
1 parent e6435ac commit 812f044

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gm4/plugins/write_mcmeta.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ def beet_default(ctx: Context):
1212
ctx.data.pack_format = 71
1313
ctx.data.supported_formats = {"min_inclusive": 71, "max_inclusive": 94}
1414
ctx.data.min_format = 71
15-
ctx.data.max_format = (94, 0)
15+
ctx.data.max_format = 94
1616

1717
ctx.assets.pack_format = 55
1818
ctx.assets.supported_formats = {"min_inclusive": 55, "max_inclusive": 75}
1919
ctx.assets.min_format = 55
20-
ctx.assets.max_format = (75, 0)
20+
ctx.assets.max_format = 75
2121

2222
for pack in ctx.packs:
2323
pack.description = [
2424
ctx.project_name,
2525
"\n",
2626
{
27-
"text": f"Gamemode 4 (1.21.5 - 1.21.11)",
27+
"text": f"Gamemode 4 (1.21.5+)",
2828
"color": "#4AA0C7"
2929
}
3030
]

resource_pack/dev_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def beet_default(ctx: Context):
1111
ctx.assets.supported_formats = {"min_inclusive": 55, "max_inclusive": 75}
1212
ctx.assets.pack_format = 55
1313
ctx.assets.min_format = 55
14-
ctx.assets.max_format = (75, 0)
14+
ctx.assets.max_format = 75

0 commit comments

Comments
 (0)