Fix DiscordBot.serverTeamChat sending to discord if received from discord!

This commit is contained in:
2025-04-18 09:30:26 +02:00
parent 7fb3d3d137
commit e143268caa
3 changed files with 3 additions and 1 deletions
@@ -179,7 +179,7 @@ public class DiscordBot {
// ~70 in a short burst and then rather long no new message.
ingameChat = new DiscordChatRoom(config.channel("ingame"), "CHAT_DISCORD_GLOBAL", Chatter::globalChat, 8);
// 60 messages per minute should be enough for the server team!
serverTeamChat = new DiscordChatRoom(config.channel("serverteam"), "CHAT_SERVERTEAM", Chatter::serverteam, 2);
serverTeamChat = new DiscordChatRoom(config.channel("serverteam"), "CHAT_DISCORD_SERVERTEAM", Chatter::serverteam, 2);
VelocityCore.schedule(() -> {
try {