From 5ecdb70f478d4402813aa28be32020fd1f8677f7 Mon Sep 17 00:00:00 2001 From: notpatchmaybe <104580041+notpatchmaybe@users.noreply.github.com> Date: Fri, 10 May 2024 13:49:23 +0100 Subject: [PATCH] Fixed missing space --- 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 cffd298b12f..324e1eeffe4 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1793,7 +1793,7 @@ export class SwapStatsAttr extends MoveEffectAttr } target.updateInfo(); user.updateInfo(); - target.scene.queueMessage(getPokemonMessage(user, `swapped stat changes with the target!`)); + target.scene.queueMessage(getPokemonMessage(user, ` swapped stat changes with the target!`)); return true; } }