Skip to content

Commit ac1f30b

Browse files
authored
Update MetadataConverter.mjs
1 parent 86c9733 commit ac1f30b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/converter/MetadataConverter.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ class MetadataConverter extends AbstractConverter {
4040

4141
MetadataConverter.mcmeta = JSON.parse((await this.output.read(from)).toString("utf8").trim()); // trim it to supports UF8 files with 'BOOM' at the beginning
4242

43-
if (MetadataConverter.mcmeta.pack.pack_format !== 4 && MetadataConverter.mcmeta.pack.pack_format !== 5 && MetadataConverter.mcmeta.pack.pack_format !== 6 && MetadataConverter.mcmeta.pack.pack_format !== 7 && MetadataConverter.mcmeta.pack.pack_format !== 8 && MetadataConverter.mcmeta.pack.pack_format !== 9) {
44-
throw new Error("Only supports pack_format 4 (v.13–1.14.4), 5 (v.15–1.16.1), 6 (v1.16.2-.16.5), 7 (v1.17), 8(v1.18) or 9(v1.19)!");
43+
if (MetadataConverter.mcmeta.pack.pack_format < 4 ) {
44+
throw new Error("Only supports pack_format 4 (v.13–1.14.4), 5 (v.15–1.16.1), 6 (v1.16.2-.16.5), 7 (v1.17), 8(v1.18), or 9(v1.19)!");
4545
}
4646

4747
const manifest = {

0 commit comments

Comments
 (0)