From 15dedc52569bf0ad80a25791ae89c2131b50bc91 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Mon, 12 Sep 2016 15:34:31 -0500 Subject: [PATCH] Added a zero-width space to tags to ensure they can't trigger other bot's commands --- cogs/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/tags.py b/cogs/tags.py index 75ab3ea..3cf0731 100644 --- a/cogs/tags.py +++ b/cogs/tags.py @@ -33,7 +33,7 @@ class Tags: await self.bot.say('That tag does not exist!') return # We shouldn't ever have two tags of the same name, so just get the first result - await self.bot.say("{}".format(result[0]['result'])) + await self.bot.say("\u200B{}".format(result[0]['result'])) @tag.command(name='add', aliases=['create', 'start'], pass_context=True, no_pm=True) @checks.custom_perms(kick_members=True)