actually some clients should disable all mentions
This commit is contained in:
parent
ccdfe465a3
commit
8789c72140
|
@ -4,7 +4,7 @@ var WebSocket = require('ws');
|
||||||
var Discord = require('discord.js');
|
var Discord = require('discord.js');
|
||||||
var createWsMessageCollector = require('./datacollector');
|
var createWsMessageCollector = require('./datacollector');
|
||||||
|
|
||||||
var webhook = new Discord.WebhookClient(config.webhooks.ddp[0], config.webhooks.ddp[1], {disableMentions:'everyone'});
|
var webhook = new Discord.WebhookClient(config.webhooks.ddp[0], config.webhooks.ddp[1], {disableMentions:'all'});
|
||||||
|
|
||||||
var ws;
|
var ws;
|
||||||
var wasConnected = false;
|
var wasConnected = false;
|
||||||
|
|
|
@ -4,7 +4,7 @@ global.clients = {};
|
||||||
global.createMPPbridge = function createMPPbridge(room, DiscordChannelID, site = 'MPP', webhookID, webhookToken) {
|
global.createMPPbridge = function createMPPbridge(room, DiscordChannelID, site = 'MPP', webhookID, webhookToken) {
|
||||||
var DiscordChannel = dClient.channels.resolve(DiscordChannelID);
|
var DiscordChannel = dClient.channels.resolve(DiscordChannelID);
|
||||||
if (!DiscordChannel) return console.error(`Couldn't bridge ${site} ${room} because Discord Channel ${DiscordChannelID} is missing!`);
|
if (!DiscordChannel) return console.error(`Couldn't bridge ${site} ${room} because Discord Channel ${DiscordChannelID} is missing!`);
|
||||||
if (webhookID && webhookToken) var webhook = new Discord.WebhookClient(webhookID, webhookToken, {disableMentions:'everyone'});
|
if (webhookID && webhookToken) var webhook = new Discord.WebhookClient(webhookID, webhookToken, {disableMentions:'all'});
|
||||||
|
|
||||||
|
|
||||||
// discord message sending
|
// discord message sending
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
username: `${m.u.username} @ fookat.tk`.substr(0,32),
|
username: `${m.u.username} @ fookat.tk`.substr(0,32),
|
||||||
avatarURL: `https://fookat.tk/avatar/${m.u.username}?${process.pid}`,
|
avatarURL: `https://fookat.tk/avatar/${m.u.username}?${process.pid}`,
|
||||||
split: true,
|
split: true,
|
||||||
disableMentions: 'everyone',
|
disableMentions: 'all',
|
||||||
embeds: m.attachments ? m.attachments.map(a => ({
|
embeds: m.attachments ? m.attachments.map(a => ({
|
||||||
title: a.title,
|
title: a.title,
|
||||||
url: a.title_link ? "https://fookat.tk" + a.title_link : undefined,
|
url: a.title_link ? "https://fookat.tk" + a.title_link : undefined,
|
||||||
|
|
Loading…
Reference in New Issue