From 30da1784b7edad2427a3076e56ce7969aca38964 Mon Sep 17 00:00:00 2001 From: binlab Date: Sat, 11 Nov 2023 00:07:41 +0000 Subject: [PATCH] =?UTF-8?q?probabilidades=20de=209=20a=201=20a=C3=B1adidas?= =?UTF-8?q?=20(creo)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index f17fe5c..b70efbd 100644 --- a/main.py +++ b/main.py @@ -129,16 +129,16 @@ async def rima(ctx, message): await ctx.reply("Pan", mention_author=True, delete_after=5) elif message.content.lower().endswith("foca") and message.author != bot.user: - await ctx.reply(random.choice(["EstĂ¡ como una roca đŸ—¿","Mi rabo en tu boca"]), mention_author=True, delete_after=5) + await ctx.reply(random.choices(["EstĂ¡ como una roca đŸ—¿","Mi rabo en tu boca"], k=1, weights=[9,1])[0], mention_author=True, delete_after=5) elif message.content.lower().endswith("catalĂ¡n") and message.author != bot.user: - await ctx.reply(random.choices(["Por el culo te la meterĂ¡n","El culo te arrasarĂ¡n"], k=1, weights=[9, 1]), mention_author=True, delete_after=5) + await ctx.reply(random.choices(["Por el culo te la meterĂ¡n","El culo te arrasarĂ¡n"], k=1, weights=[9, 1])[0], mention_author=True, delete_after=5) elif message.content.lower().endswith("valero") and message.author != bot.user: - await ctx.reply(random.choices(["Te la mete en el pesquero","Apaliza a un forastero"], k=1, weights=[9,1]), mention_author=True, delete_after=5) + await ctx.reply(random.choices(["Te la mete en el pesquero","Apaliza a un forastero"], k=1, weights=[9,1])[0], mention_author=True, delete_after=5) elif message.content.lower().endswith("jueves") and message.author != bot.user: - await ctx.reply(random.choice(["https://media.tenor.com/riA830QHvC8AAAAC/feliz-jueves-asuka.gif","https://media.tenor.com/L2-mDROrwgwAAAAd/racism.gif"], k=1, weights=[9,1]), mention_author=True) + await ctx.reply(random.choices(["https://media.tenor.com/riA830QHvC8AAAAC/feliz-jueves-asuka.gif","https://media.tenor.com/L2-mDROrwgwAAAAd/racism.gif"], k=1, weights=[9,1])[0], mention_author=True) except Exception as e: await send_log(f"rip. Error: ```{e}```")