diff --git a/src/main/java/me/zeroeightsix/kami/module/modules/chat/CustomChat.java b/src/main/java/me/zeroeightsix/kami/module/modules/chat/CustomChat.java index 9c03afd4..e3c97a87 100644 --- a/src/main/java/me/zeroeightsix/kami/module/modules/chat/CustomChat.java +++ b/src/main/java/me/zeroeightsix/kami/module/modules/chat/CustomChat.java @@ -58,7 +58,7 @@ public class CustomChat extends Module { } }); - public boolean isCommand(String s) { + private boolean isCommand(String s) { for (String value : cmdCheck) { if (s.startsWith(value)) return true; }