diff options
| author | 2020-12-28 13:01:40 +0200 | |
|---|---|---|
| committer | 2020-12-28 13:01:40 +0200 | |
| commit | b54e72025c6034c66ec5f527f69af6612ae5bec1 (patch) | |
| tree | 647babdb7640ce0a496953458b886dc58883e6d6 | |
| parent | Enable raw command (diff) | |
Update raw command no permission error message
Co-authored-by: Xithrius <[email protected]>
| -rw-r--r-- | bot/exts/info/information.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py index f7e36ac97..94c207ee3 100644 --- a/bot/exts/info/information.py +++ b/bot/exts/info/information.py @@ -424,7 +424,7 @@ class Information(Cog):      async def raw(self, ctx: Context, *, message: Message, json: bool = False) -> None:          """Shows information about the raw API response."""          if ctx.author not in message.channel.members: -            await ctx.send(":x: You can't get message from channel that you don't see.") +            await ctx.send(":x: You do not have permissions to see the channel this message is in.")              return          # I *guess* it could be deleted right as the command is invoked but I felt like it wasn't worth handling  |