From 570c89a7a2549df8a271f435bab411340cfda2ba Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Mon, 9 Jun 2025 21:48:52 -0500 Subject: [PATCH] Add missing type import in weather.ts --- src/data/weather.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/weather.ts b/src/data/weather.ts index bccbac25bc7..425e15b12a8 100644 --- a/src/data/weather.ts +++ b/src/data/weather.ts @@ -10,6 +10,7 @@ import i18next from "i18next"; import { globalScene } from "#app/global-scene"; import type { Arena } from "#app/field/arena"; import { timedEventManager } from "#app/global-event-manager"; +import type { SuppressWeatherEffectAbAttr } from "./abilities/ability"; export class Weather { public weatherType: WeatherType;