Skip to content

Commit

Permalink
Update pets.py (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
epochayur authored Aug 30, 2023
1 parent e2fa840 commit d8dcb93
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pet/pets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
)

0 comments on commit d8dcb93

Please sign in to comment.