Skip to content

Commit

Permalink
feat: add pack format 17
Browse files Browse the repository at this point in the history
  • Loading branch information
One-Nose committed Aug 10, 2023
1 parent d1e7101 commit a81e07e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file modified Super-Trim-Resources.zip
Binary file not shown.
Binary file modified Super-Trim.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion datapack/pack.mcmeta
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"pack_format": 15,
"supported_formats": {
"min_inclusive": 15,
"max_inclusive": 16
"max_inclusive": 17
}
}
}
2 changes: 1 addition & 1 deletion resourcepack/pack.mcmeta
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"pack_format": 15,
"supported_formats": {
"min_inclusive": 15,
"max_inclusive": 16
"max_inclusive": 17
}
}
}
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,5 +345,5 @@ def texture_path(namespaced_path: str, version: str) -> Path:


if __name__ == '__main__':
create_datapack(ROOT / 'datapack', argv[1], 15, (15, 16))
create_resourcepack(ROOT / 'resourcepack', argv[1], 15, (15, 16))
create_datapack(ROOT / 'datapack', argv[1], 15, (15, 17))
create_resourcepack(ROOT / 'resourcepack', argv[1], 15, (15, 17))

0 comments on commit a81e07e

Please sign in to comment.