Skip to content

Commit

Permalink
chore(release): 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lete114 committed Sep 27, 2023
1 parent 9a54da3 commit ad79809
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/behavior_pack/manifest.json
Expand Up @@ -4,7 +4,7 @@
"description": "pack.description",
"name": "pack.name",
"uuid": "1c874d6e-707e-484e-9027-0efff2b048a6",
"version": [0, 0, 4],
"version": [1, 0, 0],
"min_engine_version": [1, 20, 0]
},
"modules": [
Expand All @@ -13,14 +13,14 @@
"language": "javascript",
"type": "script",
"uuid": "9717780a-c69f-4679-bbe6-dbf6dfcdd7de",
"version": [0, 0, 4],
"version": [1, 0, 0],
"entry": "scripts/main.js"
}
],
"dependencies": [
{
"module_name": "@minecraft/server",
"version": "1.4.0-beta"
"version": "1.3.0-beta"
}
]
}
3 changes: 2 additions & 1 deletion src/behavior_pack/scripts/main.ts
@@ -1,4 +1,3 @@
/* eslint-disable no-console */
import type {
Dimension,
Player,
Expand Down Expand Up @@ -160,8 +159,10 @@ world.afterEvents.blockBreak.subscribe(async (e) => {
} catch (error) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const err = error as any
/* eslint-disable no-console */
console.log('error', err)
console.log('error.stack', err && err.stack)
console.log('error.message', err && err.message)
/* eslint-enable no-console */
}
})
2 changes: 1 addition & 1 deletion src/behavior_pack/texts/en_US.lang
@@ -1,2 +1,2 @@
pack.name=Cut tree one click
pack.name=Cut tree one click v1.0.0
pack.description=Cutting down trees in minecraft is really a waste of time
2 changes: 1 addition & 1 deletion src/behavior_pack/texts/zh_CN.lang
@@ -1,2 +1,2 @@
pack.name=一键砍树
pack.name=一键砍树 v1.0.0
pack.description=在《我的世界》中砍树真的是一件很浪费时间的事情

0 comments on commit ad79809

Please sign in to comment.