fixing typo in racoon
This commit is contained in:
parent
ae60ace55f
commit
2a4da83b89
@ -17,11 +17,12 @@ def get_panda():
|
||||
while not panda:
|
||||
panda = requests.get('https://some-random-api.ml/img/panda').json()['link']
|
||||
return panda
|
||||
def get_raccoon():
|
||||
raccoon = None
|
||||
while not raccoon:
|
||||
raccoon = requests.get('https://some-random-api.ml/img/raccoon').json()['link']
|
||||
return raccoon
|
||||
|
||||
def get_racoon():
|
||||
racoon = None
|
||||
while not racoon:
|
||||
racoon = requests.get('https://some-random-api.ml/img/racoon').json()['link']
|
||||
return racoon
|
||||
|
||||
def get_fox():
|
||||
fox = None
|
||||
|
@ -220,11 +220,11 @@ async def koala(ctx):
|
||||
|
||||
import animals
|
||||
await ctx.send(animals.get_koala())
|
||||
@bot.command(name='raccoon')
|
||||
async def raccoon(ctx):
|
||||
|
||||
@bot.command(name='racoon')
|
||||
async def racoon(ctx):
|
||||
import animals
|
||||
await ctx.send(animals.get_raccoon())
|
||||
await ctx.send(animals.get_racoon())
|
||||
|
||||
@bot.command(name='fox')
|
||||
async def fox(ctx):
|
||||
|
BIN
app/simp.jpg
BIN
app/simp.jpg
Binary file not shown.
Before Width: | Height: | Size: 156 KiB |
Loading…
x
Reference in New Issue
Block a user