Print the spawn chance as a percent

This commit is contained in:
Luke Robles 2024-11-02 10:28:06 -07:00
parent 2894973589
commit 1d3bcc7299

View File

@ -201,7 +201,7 @@ class Tarkov(commands.Cog):
for key, value in levels.items():
embed.add_field(
name=key,
value="\n".join(f"{k}: `{v}`" for k, v in value.items()),
value="\n".join(f"{k}: `{v*100}%`" for k, v in value.items()),
inline=False,
)