1
0
Fork 0
mirror of synced 2024-06-03 11:14:33 +12:00

Add a zws in order to not tag other commands

This commit is contained in:
phxntxm 2017-04-19 22:18:20 -05:00
parent b59b57f716
commit 92f62c6ce8

View file

@ -61,7 +61,7 @@ class Tags:
if tags and len(tags['tags']) > 0: if tags and len(tags['tags']) > 0:
for t in tags['tags']: for t in tags['tags']:
if t['trigger'].lower().strip() == tag: if t['trigger'].lower().strip() == tag:
await ctx.send(t['result']) await ctx.send("\u200B{}".format(t['result']))
return return
await ctx.send("There is no tag called {}".format(tag)) await ctx.send("There is no tag called {}".format(tag))
else: else: