Skip to content

Commit 5caf126

Browse files
committed
Enable inclusion, exclusion and response by default
1 parent b63a6c4 commit 5caf126

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

common/src/main/java/dev/terminalmc/chatnotify/config/Notification.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,19 @@ public enum CheckOwnMode {
9090
* Whether this instance allows use of inclusion triggers.
9191
*/
9292
public boolean inclusionEnabled;
93-
public static final boolean inclusionEnabledDefault = false;
93+
public static final boolean inclusionEnabledDefault = true;
9494

9595
/**
9696
* Whether this instance allows use of exclusion triggers.
9797
*/
9898
public boolean exclusionEnabled;
99-
public static final boolean exclusionEnabledDefault = false;
99+
public static final boolean exclusionEnabledDefault = true;
100100

101101
/**
102102
* Whether this instance allows use of response messages.
103103
*/
104104
public boolean responseEnabled;
105-
public static final boolean responseEnabledDefault = false;
105+
public static final boolean responseEnabledDefault = true;
106106

107107
/**
108108
* The {@link Sound} to play on activation.

0 commit comments

Comments
 (0)