diff --git a/changelog.d/2966.bugfix.rst b/changelog.d/2966.bugfix.rst new file mode 100644 index 000000000..b615eace2 --- /dev/null +++ b/changelog.d/2966.bugfix.rst @@ -0,0 +1 @@ +Make embedset user only affect DM's diff --git a/redbot/core/bot.py b/redbot/core/bot.py index a7c82f058..6a2150a25 100644 --- a/redbot/core/bot.py +++ b/redbot/core/bot.py @@ -203,9 +203,7 @@ class RedBase(commands.GroupMixin, commands.bot.BotBase, RPCMixin): # pylint: d bool :code:`True` if an embed is requested """ - if isinstance(channel, discord.abc.PrivateChannel) or ( - command and command == self.get_command("help") - ): + if isinstance(channel, discord.abc.PrivateChannel): user_setting = await self.db.user(user).embeds() if user_setting is not None: return user_setting