This commit is contained in:
2025-06-15 02:31:02 +09:00
parent 7f2d16de26
commit f63ebf6afb

View File

@@ -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 = [];
}
}