From b71a42493035c0c7ec11914b57ef547d72b2dbc2 Mon Sep 17 00:00:00 2001 From: notpatchmaybe <104580041+notpatchmaybe@users.noreply.github.com> Date: Sat, 11 May 2024 07:05:22 +0100 Subject: [PATCH] Adjusted message line to be consistent with Pokemon Showdown --- src/data/move.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/move.ts b/src/data/move.ts index 450b93b5afe..4532f36a3f1 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1801,7 +1801,7 @@ export class SwapStatsAttr extends MoveEffectAttr } target.updateInfo(); user.updateInfo(); - target.scene.queueMessage(getPokemonMessage(user, ' swapped stat changes with the ') + getPokemonMessage(target, `!`)); + target.scene.queueMessage(getPokemonMessage(user, ' switched stat changes with the target!')); return true; } }