Skip to content

Commit 69a7a0d

Browse files
committed
Thread pings are not enabled by default
1 parent 267df4a commit 69a7a0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/thread-pings/src/main/java/net/neoforged/camelot/module/threadpings/ThreadPingConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
public record ThreadPingConfiguration(boolean enabled, RoleSet roles, ChannelFilter channels) {
1616
public static <G> OptionBuilderFactory<G, ThreadPingConfiguration, OptionBuilder.Composite<G, ThreadPingConfiguration>> builder() {
1717
return Options.<G, ThreadPingConfiguration>composite(ThreadPingConfiguration.class)
18-
.field("enabled", ThreadPingConfiguration::enabled, Options.bool(), "Enabled", "Whether this specific ping configuration is enabled", true)
18+
.field("enabled", ThreadPingConfiguration::enabled, Options.bool(), "Enabled", "Whether this specific ping configuration is enabled", false)
1919
.field("roles", ThreadPingConfiguration::roles, Options.roles(), "Roles", "The roles to mention in threads created in channels matching the filter.")
2020
.field("channels", ThreadPingConfiguration::channels, Options.channelFilter(), "Channel filter", "Threads created in channels matching this filter will have members from the configured roles added.")
2121
.construct(ThreadPingConfiguration::new)

0 commit comments

Comments
 (0)