Skip to content

Commit 08ec461

Browse files
committed
bump to 1.15.0 (mc 1.20.70+; api 1.18.0)
1 parent 6de4d55 commit 08ec461

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pack/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"name": "Debug Stick",
66
"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-2025 Vincent Yanzee J. Tan\nLicensed under the MIT License.",
77
"uuid": "21aadfa6-e27c-400c-c596-596021852939",
8-
"version": "1.14.1",
9-
"min_engine_version": [ 1, 21, 60 ]
8+
"version": "1.15.0",
9+
"min_engine_version": [ 1, 21, 70 ]
1010
},
1111

1212
"modules": [
@@ -29,7 +29,7 @@
2929
"dependencies": [
3030
{
3131
"module_name": "@minecraft/server",
32-
"version": "1.18.0-beta"
32+
"version": "1.18.0"
3333
}
3434
],
3535

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "debug-stick",
3-
"version": "1.14.1",
3+
"version": "1.0.0",
44
"description": "Debug stick for minecraft bedrock",
55
"scripts": {
66
"test": "npx tsc",
@@ -24,7 +24,7 @@
2424
},
2525
"homepage": "https://github.com/vytdev/debug-stick#readme",
2626
"dependencies": {
27-
"@minecraft/server": "1.18.0-beta.1.21.60-stable",
27+
"@minecraft/server": "1.18.0",
2828
"typescript": "^5.4.5"
2929
}
3030
}

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
+* MCPEDL: https://mcpedl.com/debug-stick
77
+* GitHub: https://github.com/vytdev/debug-stick
88
+*
9-
+* Script last updated: February 27, 2025
9+
+* Script last updated: April 5, 2025
1010
+*
1111
+* Copyright (c) 2023-2025 VYT <https://vytdev.github.io>
1212
+* This project is licensed under the MIT License.
@@ -148,7 +148,7 @@ function displayBlockInfo(player: Player, block: Block) {
148148
if (block.isLiquid) info += "liquid";
149149
else if (block.isAir) info += "gas";
150150
else info += "solid";
151-
info += "\n§7hard block§8: " + (block.isSolid ? "§ayes" : "§cno");
151+
//info += "\n§7hard block§8: " + (block.isSolid ? "§ayes" : "§cno");
152152
info += "\n§7redstone power§8: §c" + (block.getRedstonePower() ?? 0);
153153
// The block states
154154
Object.entries(getBlockStates(block)).forEach(([k, v]) => {

0 commit comments

Comments
 (0)