From cf336fcdef0fbb0184057d3ecc21ff053e2b2451 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Sun, 25 Feb 2024 17:00:17 +0900 Subject: [PATCH] Add multisend command to processMultiCommand function --- src/ts/process/command.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/ts/process/command.ts b/src/ts/process/command.ts index d0a8aabe..02b43103 100644 --- a/src/ts/process/command.ts +++ b/src/ts/process/command.ts @@ -4,6 +4,7 @@ import { selectedCharID } from "../stores"; import { alertInput, alertMd, alertSelect, alertToast } from "../alert"; import { sayTTS } from "./tts"; import { risuChatParser } from "../parser"; +import { sendChat } from "."; export async function processMultiCommand(command:string) { let pipe = '' @@ -154,6 +155,25 @@ async function processCommand(command:string, pipe:string):Promise