This commit is contained in:
2025-01-17 23:54:58 +09:00
parent 3a063822fa
commit 7bedcf3d39

View File

@@ -19,7 +19,11 @@ class InstancePlugin extends BaseInstancePlugin {
async onOutput(output) {
if (output.type == "action") {
this.messageQueue.push([output.action, output.message]);
if (this.host.connector.connected) {
this.sendChat(output.action, output.message);
} else {
this.messageQueue.push([output.action, output.message]);
}
}
}
}