mirror of
https://github.com/PHIDIAS0303/ClusterChatSync.git
synced 2025-12-27 11:05:22 +09:00
.
This commit is contained in:
15
instance.js
15
instance.js
@@ -7,6 +7,21 @@ class InstancePlugin extends BaseInstancePlugin {
|
|||||||
this.messageQueue = [];
|
this.messageQueue = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onControllerConnectionEvent(event) {
|
||||||
|
if (event === "connect") {
|
||||||
|
for (let [action, content] of this.messageQueue) {
|
||||||
|
this.sendChat(action, content);
|
||||||
|
}
|
||||||
|
this.messageQueue = [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sendChat(action, content) {
|
||||||
|
this.instance.sendTo("controller",
|
||||||
|
new InstanceActionEvent(this.instance.name, action, content)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
async onOutput(output) {
|
async onOutput(output) {
|
||||||
if (output.type == "action") {
|
if (output.type == "action") {
|
||||||
this.messageQueue.push([output.action, output.message]);
|
this.messageQueue.push([output.action, output.message]);
|
||||||
|
|||||||
Reference in New Issue
Block a user