remove this blocked string & don't send messages containing discord.gg to server-chat

This commit is contained in:
speedxx 2020-07-16 22:24:59 -04:00
parent 30fd3ea6a1
commit c1f0d81fcc
2 changed files with 8 additions and 8 deletions

View file

@ -73,12 +73,6 @@ public class ChatManager extends FreedomService
return;
}
if (message.startsWith("Connected using PickaxeChat for "))
{
event.setCancelled(true);
return;
}
// Truncate messages that are too long - 256 characters is vanilla client max
if (message.length() > 256)
{
@ -230,4 +224,4 @@ public class ChatManager extends FreedomService
}
}
}
}
}

View file

@ -292,6 +292,12 @@ public class Discord extends FreedomService
{
message = StringUtils.remove(message, "@");
}
if (message.toLowerCase().contains("discord.gg"))
{
return;
}
if (enabled && !chat_channel_id.isEmpty())
{
CompletableFuture<Message> sentMessage = bot.getTextChannelById(chat_channel_id).sendMessage(message).submit(true);
@ -482,4 +488,4 @@ public class Discord extends FreedomService
return false;
}
}
}