send to right room id

This commit is contained in:
Lamp 2019-06-27 17:06:10 -07:00
parent 55cfcb924c
commit 3e7254ca87
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ async function messagehandle(data) {
dClient.on("local_message", async message => { dClient.on("local_message", async message => {
if (message.channel.id != "593943518351982603") return; if (message.channel.id != "593943518351982603") return;
client.socket.publish("fcf6e7e5-1d9a-48ee-808f-a9b626ce090b", { if (!client.roomID) return;
client.socket.publish(client.roomID, {
"type": "chat", "type": "chat",
"message": `${message.member.displayName}#${message.author.discriminator}: ${message.cleanContent + (message.attachments.size > 0 && message.attachments.map(x => x.url).join(' ') || '')}`, "message": `${message.member.displayName}#${message.author.discriminator}: ${message.cleanContent + (message.attachments.size > 0 && message.attachments.map(x => x.url).join(' ') || '')}`,
"value": false, "value": false,