From b7bfd07eaef62a0631b99fb12c3314eb7112c56b Mon Sep 17 00:00:00 2001 From: minenash Date: Mon, 15 Jan 2018 20:44:05 -0500 Subject: [PATCH] Made Chatgroup Compile again. --- src/com/redstoner/modules/chatgroups/Chatgroups.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/redstoner/modules/chatgroups/Chatgroups.java b/src/com/redstoner/modules/chatgroups/Chatgroups.java index 0f61451..fcded40 100644 --- a/src/com/redstoner/modules/chatgroups/Chatgroups.java +++ b/src/com/redstoner/modules/chatgroups/Chatgroups.java @@ -405,8 +405,7 @@ public class Chatgroups implements Module, Listener public boolean sendTo(CommandSender recipient) { String rgroup = getGroup(recipient); - if (rgroup != null - && (ModuleLoader.exists("Ignore")? Ignore.getIgnoredBy(sender).sendTo(recipient)? true : false : true)) + if (rgroup != null) return rgroup.equals(group); else return false;