Browse Source

Error messages dont time out anymore

tags/v2.0.0
Roxie Gibson 5 years ago
parent
commit
9c02647961
2 changed files with 7 additions and 6 deletions
  1. +6
    -5
      CHANGELOG.md
  2. +1
    -1
      roxbot/err_handle.py

+ 6
- 5
CHANGELOG.md View File

@@ -9,20 +9,21 @@

### Regular Updates
#### New Features
- Roxbot will remove all redundant settings (removed roles from self assign, etc.)
- Roxbot will remove all redundant settings (removed roles from self assign, etc.).
- Cogs have a message if they fail to load. This is better than the entire program breaking.

#### Minor Changes
- NSFW commands should have even less chance of dupes.
- All time formatting is now standardised.
- Error messages dont time out anymore.

#### Bug Fixes
- `deepfry` command now works all the time
- Pride filter filenames fixed
- As many spelling mistakes as possible
- `deepfry` command now works all the time.
- Pride filter filenames fixed.
- As many spelling mistakes as possible.
- If player can't find a thumbnail for the now playing embed, it will just not have one; Instead of breaking.
- Fixed bug where nowplaying embeds would have the wrong queued_by value.
- NSFW commands fixed
- NSFW commands fixed.

## v1.8.0
#### New Features

+ 1
- 1
roxbot/err_handle.py View File

@@ -113,7 +113,7 @@ class ErrHandle:
description="Placeholder embed. If you see this please message {}.".format(str(owner)))
if embed:
embed.colour = roxbot.EmbedColours.dark_red
await ctx.send(embed=embed, delete_after=8)
await ctx.send(embed=embed)


def setup(bot_client):

Loading…
Cancel
Save