From cc2e31dbe00380e4cc36d8366fef6ec36c991cb7 Mon Sep 17 00:00:00 2001 From: Cycrum <48132050+Cycrum@users.noreply.github.com> Date: Fri, 7 Jun 2024 00:45:36 -0400 Subject: [PATCH] [Localization] Corrected capitalization on Quick Claw activation text (#1894) * Update pokemon-species.ts Updated Pokemon genders to canonical rates * Corrected capitalization of Quick Claw activation --- src/modifier/modifier.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modifier/modifier.ts b/src/modifier/modifier.ts index 271cf38cb5c..832c16ee4a9 100644 --- a/src/modifier/modifier.ts +++ b/src/modifier/modifier.ts @@ -797,7 +797,7 @@ export class BypassSpeedChanceModifier extends PokemonHeldItemModifier { const hasQuickClaw = this.type instanceof ModifierTypes.PokemonHeldItemModifierType && this.type.id === "QUICK_CLAW"; if (isCommandFight && hasQuickClaw) { - pokemon.scene.queueMessage(getPokemonMessage(pokemon, " used its quick claw to move faster!")); + pokemon.scene.queueMessage(getPokemonMessage(pokemon, " used its Quick Claw to move faster!")); } return true; }