fixed bug to allow saving with !pokemon start

This commit is contained in:
phixxy 2024-01-07 19:47:33 -08:00
parent eb60e2136b
commit b9302b7cff

View file

@ -1764,6 +1764,7 @@ async def pokemon(ctx, arg1=None, arg2=None, arg3=None, arg4=None):
json_data['nature'] = nature
json_data['buddy_level'] = 1
json_data['buddy_xp'] = 0
await save_pokemon(ctx.author.id, json_data)
embed = await make_pmkn_embed(json_data)
await ctx.channel.send(embed=embed)
return