diff --git a/server/chat-plugins/randombattles/index.ts b/server/chat-plugins/randombattles/index.ts index 98bb7165fc49..e7111018c87d 100644 --- a/server/chat-plugins/randombattles/index.ts +++ b/server/chat-plugins/randombattles/index.ts @@ -742,7 +742,7 @@ export const commands: Chat.ChatCommands = { switch (key) { case 'moves': - for (const rawMove of value.split('~')) { + for (const rawMove of value.split('&')) { const move = dex.moves.get(rawMove); if (!move.exists) { throw new Chat.ErrorMessage(`"${rawMove}" is not a move in the specified format.`);