From f5038b64c1a42faf1991874d8f9402fa172a1613 Mon Sep 17 00:00:00 2001 From: aIbatros <57874257+aIbatros@users.noreply.github.com> Date: Sat, 24 Jul 2021 11:29:38 -0400 Subject: [PATCH] Feature/ddos welcome notification (#4) * Updated message to include status channel * Edited welcome message --- model/guild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/guild.js b/model/guild.js index 4acac69..1bc1ee3 100644 --- a/model/guild.js +++ b/model/guild.js @@ -166,7 +166,7 @@ const Guild = { }, guildMemberAddHandler: (member) => { - Guild.joinsChannel.send(`Welcome, ${member}! Just so you are aware, we are slowly recovering from a DDoS attack. If you are having any kind of issues, please make sure you are on the latest version. Please check <#863171642905591830> for the status of the servers before reporting any issues. If you are still unable to connect, you can note your switches in <#862595352917442570> so that you have them for when the server has recovered. We thank you for your patience!`) + Guild.joinsChannel.send(`Welcome, ${member}! If you joined for any specific support questions please check out <#863171642905591830> first to see if your issue is known, and make sure that your app is up-to-date before posting.`); } };