Update enum imports to use #enum path

This commit is contained in:
Sirz Benjie 2025-04-04 20:57:40 -05:00
parent c01c837919
commit 65a5016b0d
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { globalScene } from "#app/global-scene";
import { allAbilities } from "#app/data/ability";
import { pokemonEvolutions } from "#app/data/balance/pokemon-evolutions";
import { EvolutionItem } from "../../enums/evolution-item";
import { EvolutionItem } from "#enums/evolution-item";
import { Nature } from "#enums/nature";
import { FormChangeItem, pokemonFormChanges, SpeciesFormChangeItemTrigger } from "#app/data/pokemon-forms";
import { StatusEffect } from "#enums/status-effect";

View File

@ -7,7 +7,7 @@ import * as Utils from "../utils";
import type PokemonData from "../system/pokemon-data";
import MessageUiHandler from "./message-ui-handler";
import i18next from "i18next";
import { Button } from "../enums/buttons";
import { Button } from "#enums/buttons";
import { BattleType } from "../battle";
import type { RunEntry } from "../system/game-data";
import { PlayerGender } from "#enums/player-gender";