From fe6f648c25c41a95e0158b31dfd80f566d832b7f Mon Sep 17 00:00:00 2001 From: Lilac-Rose Date: Thu, 16 Oct 2025 21:09:39 +0200 Subject: [PATCH] Added a randomness to the meow command so differnt responses can happen --- commands/meow.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/commands/meow.py b/commands/meow.py index 6852d4b..85e7f14 100644 --- a/commands/meow.py +++ b/commands/meow.py @@ -1,6 +1,7 @@ import discord from discord.ext import commands from discord import app_commands +import random class Meow(commands.Cog): def __init__(self, bot: commands.Bot): @@ -8,7 +9,10 @@ class Meow(commands.Cog): @app_commands.command(name="meow") async def ping(self, interaction: discord.Interaction): - await interaction.response.send_message("Meowwwww~") + + meow_list=["Meowwwww~", "Purrrrrr", "Nyaaaaaa", "Meow Meow", "Nya!", "Meow :3"] + meow_index = random.randrange(0,5) + await interaction.response.send_message(meow_list[meow_index]) async def setup(bot: commands.Bot): await bot.add_cog(Meow(bot)) \ No newline at end of file