Updating Cog Description

pull/8/head
sgoudham 4 years ago
parent 6a4faa4c60
commit d41247ba60

@ -65,7 +65,7 @@ class Fun(commands.Cog):
@command(name="attack", aliases=['Attack'], hidden=True) @command(name="attack", aliases=['Attack'], hidden=True)
@is_owner() @is_owner()
async def attack(self, ctx, target: Member): async def attack(self, ctx, target: Member):
"""Throw insults at users""" """Throw Insults at Members"""
# Set up array of insults to throw at people # Set up array of insults to throw at people
responses = [ responses = [
@ -105,7 +105,7 @@ class Fun(commands.Cog):
@command(name="comp", aliases=['Comp', 'Compliment']) @command(name="comp", aliases=['Comp', 'Compliment'])
@cooldown(1, 1, BucketType.user) @cooldown(1, 1, BucketType.user)
async def compliment(self, ctx, target: Member): async def compliment(self, ctx, target: Member):
"""Give compliments to users""" """Give Compliments to Members"""
# Set up array of compliments to throw at people # Set up array of compliments to throw at people
responses = [ responses = [
@ -154,7 +154,7 @@ class Fun(commands.Cog):
@command(name="flip", aliases=['Flip']) @command(name="flip", aliases=['Flip'])
@cooldown(1, 1, BucketType.user) @cooldown(1, 1, BucketType.user)
async def flip(self, ctx): async def flip(self, ctx):
"""Flip a coin""" """Flip a Coin (Huge pp/Smol pp)"""
# Define array with only 2 entries to create 50/50 chance # Define array with only 2 entries to create 50/50 chance
pp_array = ["Smol pp", "Huge pp"] pp_array = ["Smol pp", "Huge pp"]
@ -206,7 +206,7 @@ class Fun(commands.Cog):
@command(name="doggo", aliases=["Doggo"]) @command(name="doggo", aliases=["Doggo"])
@cooldown(1, 1, BucketType.user) @cooldown(1, 1, BucketType.user)
async def doggo(self, ctx, breed=None): async def doggo(self, ctx, breed=None):
"""Pictures of doggos!""" """Pictures of Doggos!"""
# Set member as the author # Set member as the author
member = ctx.message.author member = ctx.message.author
@ -296,12 +296,12 @@ class Fun(commands.Cog):
# Send error message that Doggo was not found! # Send error message that Doggo was not found!
await ctx.send( await ctx.send(
"Doggo Not Found! Please do **~doggo `breeds`** to see the full list of Doggos!") f"Doggo Not Found! Please do **{ctx.prefix}doggo breeds** to see the full list of Doggos!")
@command(name="8ball", aliases=['8Ball']) @command(name="8ball", aliases=['8Ball'])
@cooldown(1, 1, BucketType.user) @cooldown(1, 1, BucketType.user)
async def _8ball(self, ctx, *, question): async def _8ball(self, ctx, *, question):
"""8ball responses!""" """8ball Responses!"""
try: try:
# Make the text readable to the api # Make the text readable to the api
@ -326,7 +326,7 @@ class Fun(commands.Cog):
@command(name="homies", aliases=["Homies", "homie", "Homie"]) @command(name="homies", aliases=["Homies", "homie", "Homie"])
@cooldown(1, 10, BucketType.user) @cooldown(1, 10, BucketType.user)
async def homies(self, ctx, *, text): async def homies(self, ctx, *, text):
"""Summoning the homies""" """Summoning the Homies"""
try: try:
# Make sure the text entered is less than 20 characters # Make sure the text entered is less than 20 characters

Loading…
Cancel
Save