Skip to content

Commit

Permalink
Enable inclusion, exclusion and response by default
Browse files Browse the repository at this point in the history
  • Loading branch information
NotRyken committed Feb 26, 2025
1 parent b63a6c4 commit 5caf126
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,19 +90,19 @@ public enum CheckOwnMode {
* Whether this instance allows use of inclusion triggers.
*/
public boolean inclusionEnabled;
public static final boolean inclusionEnabledDefault = false;
public static final boolean inclusionEnabledDefault = true;

/**
* Whether this instance allows use of exclusion triggers.
*/
public boolean exclusionEnabled;
public static final boolean exclusionEnabledDefault = false;
public static final boolean exclusionEnabledDefault = true;

/**
* Whether this instance allows use of response messages.
*/
public boolean responseEnabled;
public static final boolean responseEnabledDefault = false;
public static final boolean responseEnabledDefault = true;

/**
* The {@link Sound} to play on activation.
Expand Down

0 comments on commit 5caf126

Please sign in to comment.