diff --git a/bottools/methods.py b/bottools/methods.py index 0a16816..be0d78a 100644 --- a/bottools/methods.py +++ b/bottools/methods.py @@ -345,7 +345,7 @@ def reply(bot, update, args): else: mentions = [] - pargs = mentions + args[1:] + pargs = list(set(mentions)) + args[1:] except: update.message.reply_text(bottools.strings.cantfind % args[0])