Skip to content

Commit

Permalink
Update dado.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxiPain authored Aug 16, 2024
1 parent 004d988 commit b34ef2e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kommands/dado.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ def register(commands):
def dado(client: NewClient, message: MessageEv, args):
chat = message.Info.MessageSource.Chat

messages = ["1", "2", "3", "4", "5", "6"]
messages = ["1", "2", "3", "4", "5", "6"] # Acá se definen las variables que se elegiran aleatoriamente, puedes cambiarlo por texto o lo que quieras.

random_message = random.choice(messages)

# Enviar el mensaje con información adicional
client.reply_message(f"El resultado del dado es: {random_message}", message)

0 comments on commit b34ef2e

Please sign in to comment.