From 4dfdb6fc4ac25b15a9d44a7a0859d6b4abad0868 Mon Sep 17 00:00:00 2001 From: Last2014 Date: Sat, 16 May 2026 19:30:09 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20/weather=E3=81=8C=E5=88=A9=E7=94=A8?= =?UTF-8?q?=E3=81=A7=E3=81=8D=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C=20/=2020?= =?UTF-8?q?26.5.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ package.json | 2 +- src/feature/command/weather.ts | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f88293..c45f7bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 2026.5.2 +- Fix: `/weather`が利用できない問題 + # 2026.5.1 - Feat: 地震の震度分布画像生成 - Feat: 震度分布画に全タイルが埋まる機能 diff --git a/package.json b/package.json index cf46869..45fa826 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notice-uwuzu", - "version": "2026.5.1", + "version": "2026.5.2", "type": "module", "main": "dist/index.js", "scripts": { diff --git a/src/feature/command/weather.ts b/src/feature/command/weather.ts index b8559b0..17d3c44 100644 --- a/src/feature/command/weather.ts +++ b/src/feature/command/weather.ts @@ -2,5 +2,5 @@ import ueuseModule from "better-uwuzu-sdk/types/1.6.8/types/modules/ueuse"; import { weatherReply } from "@/feature/weatherNotice"; export default async function weatherCommand(ueuse: ueuseModule) { - await weatherReply(ueuse.uniqid); + await weatherReply(ueuse.uniqid, false); } \ No newline at end of file