diff --git a/common/src/main/java/me/lucko/luckperms/data/LogEntry.java b/common/src/main/java/me/lucko/luckperms/data/LogEntry.java index 846a0fb58..c62724f5b 100644 --- a/common/src/main/java/me/lucko/luckperms/data/LogEntry.java +++ b/common/src/main/java/me/lucko/luckperms/data/LogEntry.java @@ -52,7 +52,7 @@ public class LogEntry extends me.lucko.luckperms.api.LogEntry { plugin.getDatastore().logAction(this); LogNotifyEvent event = new LogNotifyEvent(this); - event.setCancelled(plugin.getConfiguration().getLogNotify()); + event.setCancelled(!plugin.getConfiguration().getLogNotify()); plugin.getApiProvider().fireEvent(event); if (event.isCancelled()) return;