From 1ae10c2fb2262658f4a7aae8d11a27470c7d206a Mon Sep 17 00:00:00 2001 From: Lylian Date: Fri, 25 Oct 2024 22:29:00 +0200 Subject: [PATCH] remove useless import --- src/data/move.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index 8738824a319..6def290ff4e 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -14,7 +14,7 @@ import { BattlerIndex, BattleType } from "../battle"; import { TerrainType } from "./terrain"; import { ModifierPoolType } from "#app/modifier/modifier-type"; import { Command } from "../ui/command-ui-handler"; -import i18next, { t } from "i18next"; +import i18next from "i18next"; import { Localizable } from "#app/interfaces/locales"; import { getBerryEffectFunc } from "./berry"; import { Abilities } from "#enums/abilities"; @@ -6646,7 +6646,7 @@ export class SuppressAbilitiesIfActedAttr extends MoveEffectAttr { export class TransformAttr extends MoveEffectAttr { async apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): Promise { if (!super.apply(user, target, move, args) || target.battleData.illusion.active || user.battleData.illusion.active) { - this.getFailedText(user, target, move, new Utils.BooleanHolder(true)) + this.getFailedText(user, target, move, new Utils.BooleanHolder(true)); return false; }