diff options
author | Luca Matei Pintilie <lucafulger@gmail.com> | 2021-01-17 17:19:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 17:19:07 +0000 |
commit | d6fa43d18f6e30a39d14250d5b1eabf7c503e568 (patch) | |
tree | 5532157ff57f43d679197b7b93c003ad8a862884 /cogs | |
parent | f0aef73fa58f7969ea8bdecc32699b5cb73c481a (diff) | |
download | steve-bot-d6fa43d18f6e30a39d14250d5b1eabf7c503e568.tar steve-bot-d6fa43d18f6e30a39d14250d5b1eabf7c503e568.tar.gz steve-bot-d6fa43d18f6e30a39d14250d5b1eabf7c503e568.tar.bz2 steve-bot-d6fa43d18f6e30a39d14250d5b1eabf7c503e568.tar.lz steve-bot-d6fa43d18f6e30a39d14250d5b1eabf7c503e568.tar.xz steve-bot-d6fa43d18f6e30a39d14250d5b1eabf7c503e568.tar.zst steve-bot-d6fa43d18f6e30a39d14250d5b1eabf7c503e568.zip |
Fix :sad: emoji
Diffstat (limited to 'cogs')
-rwxr-xr-x | cogs/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 2e0bfc1..f27f14f 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -429,7 +429,7 @@ class Utils(commands.Cog): fairStreak = fair[userId]["streak"] + 1 else: fairStreak = 1 - await message.channel.send("streak lost. :sad:") + await message.channel.send("streak lost. <:sad:716629485449117708>") # only send && update if user is fairing for the first time today fair[userId] = { |