chore: ping command not empheral

This commit is contained in:
neoarz
2025-10-25 15:32:22 -04:00
parent 4422bd1689
commit 1da81e68d6

View File

@@ -16,9 +16,9 @@ def ping_command():
if getattr(context, "interaction", None): if getattr(context, "interaction", None):
inter = context.interaction inter = context.interaction
if not inter.response.is_done(): if not inter.response.is_done():
await inter.response.send_message(embed=embed, ephemeral=True) await inter.response.send_message(embed=embed, ephemeral=False)
else: else:
await inter.followup.send(embed=embed, ephemeral=True) await inter.followup.send(embed=embed, ephemeral=False)
else: else:
await context.send(embed=embed) await context.send(embed=embed)