1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +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:
for t in tags['tags']:
if t['trigger'].lower().strip() == tag:
await ctx.send(t['result'])
await ctx.send("\u200B{}".format(t['result']))
return
await ctx.send("There is no tag called {}".format(tag))
else: