Fixed cmd whitelist condition

This commit is contained in:
Norbi Peti 2016-12-05 18:16:36 +01:00 committed by GitHub
parent f88c152fc7
commit 28f3f52b83

View file

@ -67,7 +67,7 @@ public class MCChatListener implements Listener, IListener<MessageReceivedEvent>
}
if (event.getMessage().getContent().startsWith("/")) {
final String cmd = event.getMessage().getContent().substring(1);
if (!player.isPresent()) {
if (!player.isPresent() && !Arrays.stream(UnconnectedCmds).anyMatch(s -> cmd.startsWith(s))) {
// Command not whitelisted
DiscordPlugin.sendMessageToChannel(event.getMessage().getChannel(), // TODO
"Sorry, you need to be online on the server and have your accounts connected, you can only access these commands:\n"