From 6028b60067c0299cf40ad32bfa5a7da0781cac98 Mon Sep 17 00:00:00 2001 From: bmintz Date: Tue, 9 Oct 2018 06:08:20 +0000 Subject: [PATCH] fix "add " not being animated --- cogs/emote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/emote.py b/cogs/emote.py index b085d64..6470dc3 100644 --- a/cogs/emote.py +++ b/cogs/emote.py @@ -112,7 +112,7 @@ class Emotes: if match is None: url = utils.strip_angle_brackets(args[1]) else: - url = utils.emote.url(match.group('id')) + url = utils.emote.url(match['id'], animated=match['animated']) return name, url