aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-11-17 22:12:10 +0000
committerGravatar GitHub <[email protected]>2021-11-17 22:12:10 +0000
commit7bdd75dd89e3dd60272e346017805e630bf3a15d (patch)
treebbf37cd66ce6cfe7e5c1f67b48a0c13bc4d0548d
parentDon't log threads in admin channels (#1954) (diff)
parentMerge branch 'main' into jb3/guild-features-channels (diff)
Merge pull request #1953 from python-discord/jb3/guild-features-channels
-rw-r--r--bot/exts/info/information.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py
index 7f4811a43..dab2dbb6c 100644
--- a/bot/exts/info/information.py
+++ b/bot/exts/info/information.py
@@ -178,7 +178,10 @@ class Information(Cog):
# Server Features are only useful in certain channels
if ctx.channel.id in (
- *constants.MODERATION_CHANNELS, constants.Channels.dev_core, constants.Channels.dev_contrib
+ *constants.MODERATION_CHANNELS,
+ constants.Channels.dev_core,
+ constants.Channels.dev_contrib,
+ constants.Channels.bot_commands
):
features = f"\nFeatures: {', '.join(ctx.guild.features)}"
else: