From f63ebf6afb3f3394362bd5b2fc6e15448132e0ca Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Sun, 15 Jun 2025 02:31:02 +0900 Subject: [PATCH] . --- instance.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance.js b/instance.js index a2d254e..3c0f9be 100644 --- a/instance.js +++ b/instance.js @@ -8,7 +8,7 @@ class InstancePlugin extends BaseInstancePlugin { onControllerConnectionEvent(event) { if (event === 'connect') { - for (let [action, content] of this.messageQueue) {this.instance.sendTo('controller', new InstanceActionEvent(this.instance.name, action, content));} + for (let [action, content] of this.messageQueue) {this.instance.sendTo('controller', new InstanceActionEvent(this.instance.name, action, content))}; this.messageQueue = []; } }