Fixing wording in the error message for the /ship command

This commit is contained in:
Luke 2023-05-25 16:54:06 -07:00
parent 88a72b87fb
commit bfa19cf9e4

2
app/star_citizen.py Normal file → Executable file
View File

@ -206,7 +206,7 @@ async def get_ship(ship_name):
embed = discord.Embed(description="", color=discord.Color.red(), type="rich") embed = discord.Embed(description="", color=discord.Color.red(), type="rich")
embed.add_field( embed.add_field(
name="**Could not find that ship**", name="**Could not find that ship**",
value="You gave me %s. Did you spell it right? (Its also possible my shitty code isnt working right)" value="You gave me %s. Did you spell it right?\n\n(Its also possible my shitty code isnt working)"
% ship_name, % ship_name,
inline=True, inline=True,
) )