diff --git a/pack/manifest.json b/pack/manifest.json index d7dacb7..644c28a 100644 --- a/pack/manifest.json +++ b/pack/manifest.json @@ -1,12 +1,12 @@ { - "format_version": 2, + "format_version": 3, "header": { "name": "Debug Stick", "description": "Java §dDebug Stick§r ported to Minecraft: Bedrock Edition, by §bvytdev§r\nUse §a/give @s vyt:debug_stick§r or find it in the inventory screen to obtain the item.\n\nReport bugs here: §bhttps://github.com/vytdev/debug-stick/§r\nCopyright (c) 2023-2026 Vincent Yanzee J. Tan\nLicensed under the MIT License.", "uuid": "21aadfa6-e27c-400c-c596-596021852939", - "version": "1.21.0", - "min_engine_version": [ 1, 21, 130 ] + "version": "1.22.0", + "min_engine_version": "1.26.0" }, "modules": [ @@ -14,7 +14,7 @@ "description": "behaviour", "type": "data", "uuid": "d8a9ff21-7aa3-4b83-73ed-eeb141516e74", - "version": [ 1, 0, 0 ] + "version": "1.0.0" }, { "description": "scripting", @@ -22,14 +22,14 @@ "language": "javascript", "entry": "scripts/index.js", "uuid": "86c7bab4-aed9-4297-5f0c-d5d62bd30be1", - "version": [ 1, 0, 0 ] + "version": "1.0.0" } ], "dependencies": [ { "module_name": "@minecraft/server", - "version": "2.4.0" + "version": "2.5.0" } ], diff --git a/pack/pack_icon.png b/pack/pack_icon.png index 73fb813..8924225 100644 Binary files a/pack/pack_icon.png and b/pack/pack_icon.png differ diff --git a/package.json b/package.json index c2065d1..46984f0 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "watch": "node tool.js watch" }, "dependencies": { - "@minecraft/server": "^2.4.0" + "@minecraft/server": "^2.5.0" }, "devDependencies": { "jszip": "^3.10.1", diff --git a/tool.js b/tool.js index 1bba9ce..49a8dee 100755 --- a/tool.js +++ b/tool.js @@ -11,7 +11,7 @@ import tsconfig from './tsconfig.json' with { type: 'json' }; import manifest from './pack/manifest.json' with { type: 'json' }; const packVersion = manifest.header.version; -const packMinEngineVersion = manifest.header.min_engine_version.join('.'); +const packMinEngineVersion = manifest.header.min_engine_version; const actionTable = {};