We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e6692f commit 0e89ad2Copy full SHA for 0e89ad2
1 file changed
src/cmds/util/Say.cpp
@@ -84,7 +84,14 @@ class SayCommand final : public base::Command {
84
dpp::command_option(
85
dpp::co_channel,
86
"channel",
87
- "The channel to send the message to."))
+ "The channel to send the message to.")
88
+ .add_channel_type(dpp::channel_type::CHANNEL_TEXT)
89
+ .add_channel_type(dpp::channel_type::CHANNEL_PUBLIC_THREAD)
90
+ .add_channel_type(dpp::channel_type::CHANNEL_PRIVATE_THREAD)
91
+ .add_channel_type(dpp::channel_type::CHANNEL_VOICE)
92
+ .add_channel_type(dpp::channel_type::CHANNEL_ANNOUNCEMENT)
93
+ .add_channel_type(dpp::channel_type::CHANNEL_ANNOUNCEMENT_THREAD)
94
+ .add_channel_type(dpp::channel_type::CHANNEL_STAGE))
95
.add_option(
96
97
dpp::co_boolean,
0 commit comments