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