From 65179a5ab996c60722fa522c6065f8f049115be7 Mon Sep 17 00:00:00 2001 From: Vankka Date: Sat, 23 Dec 2023 01:15:18 +0200 Subject: [PATCH] Tweak comment for channel-ids --- .../common/config/main/generic/DestinationConfig.java | 2 +- .../com/discordsrv/common/config/main/generic/ThreadConfig.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/common/src/main/java/com/discordsrv/common/config/main/generic/DestinationConfig.java b/common/src/main/java/com/discordsrv/common/config/main/generic/DestinationConfig.java index 2db48b10..cbbd7cc7 100644 --- a/common/src/main/java/com/discordsrv/common/config/main/generic/DestinationConfig.java +++ b/common/src/main/java/com/discordsrv/common/config/main/generic/DestinationConfig.java @@ -14,7 +14,7 @@ import java.util.List; public class DestinationConfig { @Setting("channel-ids") - @Comment("The channels this in-game channel will forward to in Discord") + @Comment("The text and/or voice channel ids this in-game channel will forward to in Discord") public List channelIds = new ArrayList<>(); @Setting("threads") diff --git a/common/src/main/java/com/discordsrv/common/config/main/generic/ThreadConfig.java b/common/src/main/java/com/discordsrv/common/config/main/generic/ThreadConfig.java index 7ec0dfcd..a6b2109d 100644 --- a/common/src/main/java/com/discordsrv/common/config/main/generic/ThreadConfig.java +++ b/common/src/main/java/com/discordsrv/common/config/main/generic/ThreadConfig.java @@ -26,7 +26,6 @@ public class ThreadConfig { @Comment("Specify the text or forum channel id and the name of the thread (the thread will be automatically created if it doesn't exist)") public Long channelId = 0L; - public String threadName = "Minecraft Server chat bridge"; public boolean privateThread = false;