fixing typo for raccoon

This commit is contained in:
Luke Robles 2021-03-31 22:13:21 -07:00
parent 438562ed8e
commit 6f69bf95c8
3 changed files with 9 additions and 9 deletions

View File

@ -17,11 +17,11 @@ def get_panda():
while not panda:
panda = requests.get('https://some-random-api.ml/img/panda').json()['link']
return panda
def get_racoon():
racoon = None
while not racoon:
racoon = requests.get('https://some-random-api.ml/img/racoon').json()['link']
return racoon
def get_raccoon():
raccoon = None
while not raccoon:
raccoon = requests.get('https://some-random-api.ml/img/raccoon').json()['link']
return raccoon
def get_fox():
fox = None

View File

@ -220,11 +220,11 @@ async def koala(ctx):
import animals
await ctx.send(animals.get_koala())
@bot.command(name='racoon')
async def racoon(ctx):
@bot.command(name='raccoon')
async def raccoon(ctx):
import animals
await ctx.send(animals.get_racoon())
await ctx.send(animals.get_raccoon())
@bot.command(name='fox')
async def fox(ctx):

View File

@ -189,7 +189,7 @@ def get_help_embed(bot):
'fun': ['ffxiv', 'clap', 'youtube', 'excuse', 'greentext', 'lewd', 'message', 'meme', 'homepage', 'pout', 'roll', 'smug', 'quake', 'wink', 'verify'],
'util': ['ask', 'corona', 'emoji', '8ball', 'decide', 'info', 'icon', 'wallpaper', 'stock', 'tts', 'issue'],
'users': ['help', 'invite', 'purge', 'roles', 'source'],
'pictures of animals': ['birb', 'redpanda,' 'dale', 'dog', 'rat', 'koala', 'panda', 'racoon', 'fox', 'cat', 'kangaroo'],
'pictures of animals': ['birb', 'redpanda,' 'dale', 'dog', 'rat', 'koala', 'panda', 'raccoon', 'fox', 'cat', 'kangaroo'],
'admin': ['cleanup']
}