From 771dbbc1db8ae384c43aa5be50ef131b714a987a Mon Sep 17 00:00:00 2001 From: oasoby <134684352+oasoby@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:59:24 +0900 Subject: [PATCH] =?UTF-8?q?1.21.50=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 8 ++++---- readme-en.md | 22 ---------------------- scripts/main.js | 4 ++-- 3 files changed, 6 insertions(+), 28 deletions(-) delete mode 100644 readme-en.md diff --git a/manifest.json b/manifest.json index 8b4ddd5..37d1131 100644 --- a/manifest.json +++ b/manifest.json @@ -1,18 +1,18 @@ { "format_version": 2, "header": { - "name": "Note Block+ v2.0.3", + "name": "Note Block+ v2.0.4", "description": "音ブロックの音階を表示するアドオン。 \nTwitter:@oasoby", "min_engine_version": [ 1, 21, - 40 + 50 ], "uuid": "fc863469-2162-461d-8ba8-2691c9197deb", "version": [ 2, 0, - 3 + 4 ] }, "modules": [ @@ -40,7 +40,7 @@ "dependencies": [ { "module_name": "@minecraft/server", - "version": "1.16.0-beta" + "version": "1.17.0-beta" }, { "module_name": "@minecraft/server-ui", diff --git a/readme-en.md b/readme-en.md deleted file mode 100644 index aef071b..0000000 --- a/readme-en.md +++ /dev/null @@ -1,22 +0,0 @@ -[日本語バージョン](https://github.com/oasoobi/noteblockplus/blob/main/readme.md) - - -# display the scale of a note block -[Download the latest version](https://github.com/oasoobi/noteblockplus/releases/latest/download/noteblockplus.mcpack) - - -## Attention: -When creating a world, the Beta APIs must be enabled before adding the add-on. Holiday Creator Futures must be enabled as well. -## How to use: - - -Take a note stick from your creative inventory. - - -sneaking and click on the note stick to check the scale without changing it. - - -If you are not sneaking, you can view the scale after it has been changed. - - -![](https://i.imgur.com/h7Oa1nW.png) diff --git a/scripts/main.js b/scripts/main.js index f8c33d2..2987d1e 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -385,9 +385,9 @@ system.afterEvents.scriptEventReceive.subscribe(e => { }) } else if (id == "note:version") { if (sourceEntity.getDynamicProperty("language") == 1) { - sourceEntity.sendMessage("§eNoteBlock+のバージョンは 2.0.3 です。"); + sourceEntity.sendMessage("§eNoteBlock+のバージョンは 2.0.4 です。"); } else { - sourceEntity.sendMessage("§eNoteBlock+ is at version 2.0.3."); + sourceEntity.sendMessage("§eNoteBlock+ is at version 2.0.4."); } } })