diff --git a/user_ext/profile.py b/user_ext/profile.py index 783308f..0cd913d 100644 --- a/user_ext/profile.py +++ b/user_ext/profile.py @@ -9,5 +9,6 @@ class Extension: profile: str = "" ): steam64 = await core.GetSteam64OfDiscord(interaction.user) + await interaction.response.defer(thinking=True) player = await core.GetPlayer(profile, steam64) if profile else await core.GetPlayer(steam64, steam64) - return await interaction.response.send_message(embed=player.embed, ephemeral=False) \ No newline at end of file + return await interaction.followup.send(embed=player.embed, ephemeral=False) \ No newline at end of file