From b9302b7cff7819a61757b5401fba053a7daf4477 Mon Sep 17 00:00:00 2001 From: phixxy Date: Sun, 7 Jan 2024 19:47:33 -0800 Subject: [PATCH] fixed bug to allow saving with !pokemon start --- sparkytron3000.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sparkytron3000.py b/sparkytron3000.py index 6ead624..0ef11e6 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -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