From 3f9b2881dd0180f17a4e2bc52972dfb1574f53c6 Mon Sep 17 00:00:00 2001 From: Epoc Date: Mon, 28 Aug 2023 15:11:51 -0700 Subject: [PATCH] Update pets.py --- pet/pets.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pet/pets.py b/pet/pets.py index e0949c0..1b193b3 100644 --- a/pet/pets.py +++ b/pet/pets.py @@ -1000,3 +1000,21 @@ async def magicball(self, ctx, *, name: str = None): ctx.author.mention, random.choice(self.magic_ball_responses) ) ) + + @commands.command(aliases=["ahelp"]) + async def adminhelp(self, ctx, *, name: str): + """ + BWOINK + """ + if random.random() > 0.5: + await ctx.send( + "Admin PM from {}: {} IC issue".format( + ctx.author.mention, name + ) + ) + else: + await ctx.send( + "Admin PM from {}: {} Skill issue".format( + ctx.author.mention, name + ) + )