From aa60ffcd36184fd8dc4d48f42d942ca86377c645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo=20Fleury=20Oliveira?= Date: Mon, 20 May 2024 14:10:25 -0300 Subject: [PATCH] minor fix --- src/locales/de/config.ts | 3 ++- src/locales/en/config.ts | 3 ++- src/locales/es/config.ts | 3 ++- src/locales/fr/config.ts | 3 ++- src/locales/it/config.ts | 3 ++- src/locales/pt_BR/config.ts | 3 ++- src/locales/zh_CN/config.ts | 3 ++- 7 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/locales/de/config.ts b/src/locales/de/config.ts index eabd66dec84..b3ecdda97ff 100644 --- a/src/locales/de/config.ts +++ b/src/locales/de/config.ts @@ -2,6 +2,7 @@ import { ability } from "./ability"; import { abilityTriggers } from "./ability-trigger"; import { achv } from "./achv"; import { battle } from "./battle"; +import { battleMessageUiHandler } from "./battle-message-ui-handler"; import { berry } from "./berry"; import { commandUiHandler } from "./command-ui-handler"; import { egg } from "./egg"; @@ -22,12 +23,12 @@ import { tutorial } from "./tutorial"; import { voucher } from "./voucher"; import { weather } from "./weather"; - export const deConfig = { ability: ability, abilityTriggers: abilityTriggers, achv: achv, battle: battle, + battleMessageUiHandler: battleMessageUiHandler, berry: berry, commandUiHandler: commandUiHandler, egg: egg, diff --git a/src/locales/en/config.ts b/src/locales/en/config.ts index 8efcaa918ba..ab5c3780d16 100644 --- a/src/locales/en/config.ts +++ b/src/locales/en/config.ts @@ -2,6 +2,7 @@ import { ability } from "./ability"; import { abilityTriggers } from "./ability-trigger"; import { achv } from "./achv"; import { battle } from "./battle"; +import { battleMessageUiHandler } from "./battle-message-ui-handler"; import { berry } from "./berry"; import { commandUiHandler } from "./command-ui-handler"; import { egg } from "./egg"; @@ -22,12 +23,12 @@ import { tutorial } from "./tutorial"; import { voucher } from "./voucher"; import { weather } from "./weather"; - export const enConfig = { ability: ability, abilityTriggers: abilityTriggers, achv: achv, battle: battle, + battleMessageUiHandler: battleMessageUiHandler, berry: berry, commandUiHandler: commandUiHandler, egg: egg, diff --git a/src/locales/es/config.ts b/src/locales/es/config.ts index d98bb265b5f..543068057f3 100644 --- a/src/locales/es/config.ts +++ b/src/locales/es/config.ts @@ -2,6 +2,7 @@ import { ability } from "./ability"; import { abilityTriggers } from "./ability-trigger"; import { achv } from "./achv"; import { battle } from "./battle"; +import { battleMessageUiHandler } from "./battle-message-ui-handler"; import { berry } from "./berry"; import { commandUiHandler } from "./command-ui-handler"; import { egg } from "./egg"; @@ -22,12 +23,12 @@ import { tutorial } from "./tutorial"; import { voucher } from "./voucher"; import { weather } from "./weather"; - export const esConfig = { ability: ability, abilityTriggers: abilityTriggers, achv: achv, battle: battle, + battleMessageUiHandler: battleMessageUiHandler, berry: berry, commandUiHandler: commandUiHandler, egg: egg, diff --git a/src/locales/fr/config.ts b/src/locales/fr/config.ts index 60f2943595e..cf669ae5a4c 100644 --- a/src/locales/fr/config.ts +++ b/src/locales/fr/config.ts @@ -2,6 +2,7 @@ import { ability } from "./ability"; import { abilityTriggers } from "./ability-trigger"; import { achv } from "./achv"; import { battle } from "./battle"; +import { battleMessageUiHandler } from "./battle-message-ui-handler"; import { berry } from "./berry"; import { commandUiHandler } from "./command-ui-handler"; import { egg } from "./egg"; @@ -22,12 +23,12 @@ import { tutorial } from "./tutorial"; import { voucher } from "./voucher"; import { weather } from "./weather"; - export const frConfig = { ability: ability, abilityTriggers: abilityTriggers, achv: achv, battle: battle, + battleMessageUiHandler: battleMessageUiHandler, berry: berry, commandUiHandler: commandUiHandler, egg: egg, diff --git a/src/locales/it/config.ts b/src/locales/it/config.ts index 4f05bc12663..747e86faaa9 100644 --- a/src/locales/it/config.ts +++ b/src/locales/it/config.ts @@ -2,6 +2,7 @@ import { ability } from "./ability"; import { abilityTriggers } from "./ability-trigger"; import { achv } from "./achv"; import { battle } from "./battle"; +import { battleMessageUiHandler } from "./battle-message-ui-handler"; import { berry } from "./berry"; import { commandUiHandler } from "./command-ui-handler"; import { egg } from "./egg"; @@ -22,12 +23,12 @@ import { tutorial } from "./tutorial"; import { voucher } from "./voucher"; import { weather } from "./weather"; - export const itConfig = { ability: ability, abilityTriggers: abilityTriggers, achv: achv, battle: battle, + battleMessageUiHandler: battleMessageUiHandler, berry: berry, commandUiHandler: commandUiHandler, egg: egg, diff --git a/src/locales/pt_BR/config.ts b/src/locales/pt_BR/config.ts index 030700105ec..39a0324d184 100644 --- a/src/locales/pt_BR/config.ts +++ b/src/locales/pt_BR/config.ts @@ -2,6 +2,7 @@ import { ability } from "./ability"; import { abilityTriggers } from "./ability-trigger"; import { achv } from "./achv"; import { battle } from "./battle"; +import { battleMessageUiHandler } from "./battle-message-ui-handler"; import { berry } from "./berry"; import { commandUiHandler } from "./command-ui-handler"; import { egg } from "./egg"; @@ -22,12 +23,12 @@ import { tutorial } from "./tutorial"; import { voucher } from "./voucher"; import { weather } from "./weather"; - export const ptBrConfig = { ability: ability, abilityTriggers: abilityTriggers, achv: achv, battle: battle, + battleMessageUiHandler: battleMessageUiHandler, berry: berry, commandUiHandler: commandUiHandler, egg: egg, diff --git a/src/locales/zh_CN/config.ts b/src/locales/zh_CN/config.ts index 8c00bc52b30..e326566fc52 100644 --- a/src/locales/zh_CN/config.ts +++ b/src/locales/zh_CN/config.ts @@ -2,6 +2,7 @@ import { ability } from "./ability"; import { abilityTriggers } from "./ability-trigger"; import { achv } from "./achv"; import { battle } from "./battle"; +import { battleMessageUiHandler } from "./battle-message-ui-handler"; import { berry } from "./berry"; import { commandUiHandler } from "./command-ui-handler"; import { egg } from "./egg"; @@ -22,12 +23,12 @@ import { tutorial } from "./tutorial"; import { voucher } from "./voucher"; import { weather } from "./weather"; - export const zhCnConfig = { ability: ability, abilityTriggers: abilityTriggers, achv: achv, battle: battle, + battleMessageUiHandler: battleMessageUiHandler, berry: berry, commandUiHandler: commandUiHandler, egg: egg,