mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-05 17:02:32 -05:00
Port TiV changes applied to voice channels to stage channels (#6109)
This commit is contained in:
@@ -1173,7 +1173,7 @@ embedset channel
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]embedset channel [enabled]
|
||||
[p]embedset channel <channel> [enabled]
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -1187,10 +1187,12 @@ If enabled is left blank, the setting will be unset and the guild default will b
|
||||
To see full evaluation order of embed settings, run ``[p]help embedset``.
|
||||
|
||||
**Examples:**
|
||||
- ``[p]embedset channel False`` - Disables embeds in this channel.
|
||||
- ``[p]embedset channel`` - Resets value to use guild default.
|
||||
- ``[p]embedset channel #text-channel False`` - Disables embeds in the #text-channel.
|
||||
- ``[p]embedset channel #forum-channel disable`` - Disables embeds in the #forum-channel.
|
||||
- ``[p]embedset channel #text-channel`` - Resets value to use guild default in the #text-channel.
|
||||
|
||||
**Arguments:**
|
||||
- ``<channel>`` - The text, voice, stage, or forum channel to set embed setting for.
|
||||
- ``[enabled]`` - Whether to use embeds in this channel. Leave blank to reset to default.
|
||||
|
||||
.. _core-command-embedset-command:
|
||||
|
||||
@@ -115,11 +115,12 @@ Add words to the filter.
|
||||
Use double quotes to add sentences.
|
||||
|
||||
Examples:
|
||||
- ``[p]filter channel add word1 word2 word3``
|
||||
- ``[p]filter channel add "This is a sentence"``
|
||||
- ``[p]filter channel add #channel word1 word2 word3``
|
||||
- ``[p]filter channel add #channel "This is a sentence"``
|
||||
|
||||
**Arguments:**
|
||||
|
||||
- ``<channel>`` The text, voice, stage, or forum channel to add filtered words to.
|
||||
- ``[words...]`` The words or sentences to filter.
|
||||
|
||||
.. _filter-command-filter-channel-clear:
|
||||
@@ -164,7 +165,7 @@ filter channel remove
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]filter channel remove [words...]
|
||||
[p]filter channel remove <channel> [words...]
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -173,11 +174,12 @@ Remove words from the filter.
|
||||
Use double quotes to remove sentences.
|
||||
|
||||
Examples:
|
||||
- ``[p]filter channel remove word1 word2 word3``
|
||||
- ``[p]filter channel remove "This is a sentence"``
|
||||
- ``[p]filter channel remove #channel word1 word2 word3``
|
||||
- ``[p]filter channel remove #channel "This is a sentence"``
|
||||
|
||||
**Arguments:**
|
||||
|
||||
- ``<channel>`` The text, voice, stage, or forum channel to add filtered words to.
|
||||
- ``[words...]`` The words or sentences to no longer filter.
|
||||
|
||||
.. _filter-command-filter-clear:
|
||||
|
||||
@@ -31,7 +31,7 @@ In terms of scope, global rules will be checked first, then server rules.
|
||||
For each of those, the first rule pertaining to one of the following models will be used:
|
||||
|
||||
1. User
|
||||
2. Voice channel a user is connected to
|
||||
2. Voice/stage channel a user is connected to
|
||||
3. The channel command was issued in (parent channel in case of invocations in threads)
|
||||
4. Channel category
|
||||
5. Roles, highest to lowest
|
||||
|
||||
@@ -325,19 +325,19 @@ Here's an example of a list of versions sorted using the new order (oldest versi
|
||||
- 3.5.0.post1
|
||||
- 3.5.1
|
||||
|
||||
``Red.get_owner_notification_destinations()`` may return a ``discord.VoiceChannel`` instance now
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
``Red.get_owner_notification_destinations()`` may now return instances of ``discord.Voice/StageChannel``
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
With the introduction of Text in Voice feature, we added the ability to add a voice channel
|
||||
With the introduction of Text in Voice feature, we added the ability to add a voice/stage channel
|
||||
as an owner notifications destination. This means that `redbot.core.modlog.get_modlog_channel()`
|
||||
may now return an instance of `discord.VoiceChannel`.
|
||||
may now return instances of `discord.VoiceChannel` and `discord.StageChannel`.
|
||||
|
||||
``modlog.get_modlog_channel()`` may return a ``discord.VoiceChannel`` instance now
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
``modlog.get_modlog_channel()`` may now return instances of ``discord.Voice/StageChannel``
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
With the introduction of Text in Voice feature, we added the ability to set a modlog
|
||||
channel to a voice channel. This means that `redbot.core.modlog.get_modlog_channel()`
|
||||
may now return an instance of `discord.VoiceChannel`.
|
||||
channel to a voice/stage channel. This means that `redbot.core.modlog.get_modlog_channel()`
|
||||
may now return instances of `discord.VoiceChannel` and `discord.StageChannel`.
|
||||
|
||||
``menus.DEFAULT_CONTROLS`` and ``ReactionPredicate.*_EMOJIS`` use immutable types now
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Reference in New Issue
Block a user