Update path for utils in ab-attr.ts

This commit is contained in:
Sirz Benjie 2025-04-15 10:10:02 -05:00
parent f450fcbe5b
commit ccd3ffb5ae
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -1,6 +1,6 @@
import type { AbAttrCondition } from "#app/@types/ability-types"; import type { AbAttrCondition } from "#app/@types/ability-types";
import type Pokemon from "#app/field/pokemon"; import type Pokemon from "#app/field/pokemon";
import type * as Utils from "#app/utils"; import type { BooleanHolder } from "#app/utils/common";
export abstract class AbAttr { export abstract class AbAttr {
public showAbility: boolean; public showAbility: boolean;
@ -22,7 +22,7 @@ export abstract class AbAttr {
_pokemon: Pokemon, _pokemon: Pokemon,
_passive: boolean, _passive: boolean,
_simulated: boolean, _simulated: boolean,
_cancelled: Utils.BooleanHolder | null, _cancelled: BooleanHolder | null,
_args: any[], _args: any[],
): void {} ): void {}