Skip to content

Commit

Permalink
Prettify character name when generating similar moves embed
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhijeetKrishnan committed Feb 17, 2024
1 parent 83e3f5a commit afcc320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/heihachi/embed.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_similar_moves_embed(
embed = discord.Embed(
title=MOVE_NOT_FOUND_TITLE,
colour=WARNING_COLOR,
description="Similar moves from {}\n{}".format(character_name.value, "\n".join(command_list)),
description="Similar moves from {}\n{}".format(character_name.pretty(), "\n".join(command_list)),
)
return embed

Expand Down

0 comments on commit afcc320

Please sign in to comment.