fixing typo for raccoon
This commit is contained in:
parent
438562ed8e
commit
6f69bf95c8
@ -17,11 +17,11 @@ def get_panda():
|
|||||||
while not panda:
|
while not panda:
|
||||||
panda = requests.get('https://some-random-api.ml/img/panda').json()['link']
|
panda = requests.get('https://some-random-api.ml/img/panda').json()['link']
|
||||||
return panda
|
return panda
|
||||||
def get_racoon():
|
def get_raccoon():
|
||||||
racoon = None
|
raccoon = None
|
||||||
while not racoon:
|
while not raccoon:
|
||||||
racoon = requests.get('https://some-random-api.ml/img/racoon').json()['link']
|
raccoon = requests.get('https://some-random-api.ml/img/raccoon').json()['link']
|
||||||
return racoon
|
return raccoon
|
||||||
|
|
||||||
def get_fox():
|
def get_fox():
|
||||||
fox = None
|
fox = None
|
||||||
|
@ -220,11 +220,11 @@ async def koala(ctx):
|
|||||||
|
|
||||||
import animals
|
import animals
|
||||||
await ctx.send(animals.get_koala())
|
await ctx.send(animals.get_koala())
|
||||||
@bot.command(name='racoon')
|
@bot.command(name='raccoon')
|
||||||
async def racoon(ctx):
|
async def raccoon(ctx):
|
||||||
|
|
||||||
import animals
|
import animals
|
||||||
await ctx.send(animals.get_racoon())
|
await ctx.send(animals.get_raccoon())
|
||||||
|
|
||||||
@bot.command(name='fox')
|
@bot.command(name='fox')
|
||||||
async def fox(ctx):
|
async def fox(ctx):
|
||||||
|
@ -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'],
|
'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'],
|
'util': ['ask', 'corona', 'emoji', '8ball', 'decide', 'info', 'icon', 'wallpaper', 'stock', 'tts', 'issue'],
|
||||||
'users': ['help', 'invite', 'purge', 'roles', 'source'],
|
'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']
|
'admin': ['cleanup']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user