From 3e4593931cb666b87e7f718aa0514bd90717f08b Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 10 Sep 2018 17:08:21 +0100 Subject: [PATCH] Filter community chat within the community chat handler --- .../src/mineplex/core/communities/CommunityManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/communities/CommunityManager.java b/Plugins/Mineplex.Core/src/mineplex/core/communities/CommunityManager.java index e150058f8..78f0f2ba5 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/communities/CommunityManager.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/communities/CommunityManager.java @@ -1040,7 +1040,7 @@ public class CommunityManager extends MiniDbClientPlugin { if (Recharge.Instance.use(sender, "Community Chat to " + target.getId(), target.getChatDelay(), false, false)) { - new CommunityChat(sender.getName(), target.getId(), event.getMessage()).publish(); + new CommunityChat(sender.getName(), target.getId(), _chat.filterMessage(sender, true, event.getMessage())).publish(); } else {