Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pack/manifest.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"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": [
{
"description": "behaviour",
"type": "data",
"uuid": "d8a9ff21-7aa3-4b83-73ed-eeb141516e74",
"version": [ 1, 0, 0 ]
"version": "1.0.0"
},
{
"description": "scripting",
"type": "script",
"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"
}
],

Expand Down
Binary file modified pack/pack_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tool.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};


Expand Down