diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index 54396f7..3ff8f39 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -263,14 +263,14 @@ class Mybot(commands.Cog): @commands.command(help= "randomsur l'avenir des gens.") async def avenir(self, ctx): - - choix = random.choice(list_mot) + list_mot = ("tu seras curé, tu t'occuperas plus spécialement du catéchisme. ", "tu seras animateur de soirées pour les gays pride. ", "tu seras gynecologue dans une maison de retraite." "tu iras vivre en thaïland à cause de ton job. car tu seras ladyboy dans un bar." "tu sera DSI chez jacky et Michel" "tu seras arroseur de plante aquatique.") + choix = random.choice(list_mot) await ctx.channel.send(choix)