From b26ca55c2b968458b3887d894a4a226f4355db18 Mon Sep 17 00:00:00 2001 From: Gakuto1112 Date: Wed, 5 Mar 2025 19:00:17 +0900 Subject: [PATCH 1/3] =?UTF-8?q?README=E3=81=AE=E8=A6=8B=E5=87=BA=E3=81=97?= =?UTF-8?q?=E3=81=AE=E3=83=AC=E3=83=99=E3=83=AB=E9=96=93=E9=81=95=E3=81=84?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/README_templates/jp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README_templates/jp.md b/.github/README_templates/jp.md index de6d9c0..cff9ccb 100644 --- a/.github/README_templates/jp.md +++ b/.github/README_templates/jp.md @@ -302,7 +302,7 @@ Mobが被っているプレイヤーの頭は設定に関わらず、デフォ 右クリックすると、最新のアバターのダウンロードリンクをクリップボードにコピーします。お使いのブラウザからダウンロードページにアクセスしてください。なお、1回もアップデートの確認を行っていなかったり、長期間アップデートの確認を行っていなかったりする場合は正常なリンクを取得できませんのでご注意ください。 -### アバターのバージョン表示 +## アバターのバージョン表示 v1.26.0より、アクションホイールを開けている際に、画面左上に現在使用中のアバターのバージョンとアップデートの有無が表示されます。 ![アバターバージョン表示](../README_images/version_information.jpg) From 9f346ed10aafa0f430940cf0d8b5f2a00e40bd21 Mon Sep 17 00:00:00 2001 From: Gakuto1112 Date: Wed, 5 Mar 2025 19:03:17 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E3=82=A8=E3=83=95=E3=82=A7=E3=82=AF?= =?UTF-8?q?=E3=83=88=E6=A4=9C=E5=87=BA=E6=A9=9F=E8=83=BD=E3=82=92=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/general.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/general.lua b/scripts/general.lua index c3bd41d..6a3b35c 100644 --- a/scripts/general.lua +++ b/scripts/general.lua @@ -49,7 +49,8 @@ General = { getTargetEffect = function (name) if host:isHost() then for _, effect in ipairs(host:getStatusEffects()) do - local effectName = effect.name:match("^effect%.minecraft%.(.+)$") + local effectName = effect.name:match("minecraft[%.:](.+)$") + if effectName == name then return effect end From bf9703ef1629653eed089794b3bd9b26b7e73d10 Mon Sep 17 00:00:00 2001 From: Gakuto1112 Date: Wed, 5 Mar 2025 19:04:01 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BD=99=E5=88=86=E3=81=AA=E6=94=B9?= =?UTF-8?q?=E8=A1=8C=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/general.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/general.lua b/scripts/general.lua index 6a3b35c..0f1f8f0 100644 --- a/scripts/general.lua +++ b/scripts/general.lua @@ -50,7 +50,6 @@ General = { if host:isHost() then for _, effect in ipairs(host:getStatusEffects()) do local effectName = effect.name:match("minecraft[%.:](.+)$") - if effectName == name then return effect end