fix: hopefully made formatted numbers like 51,763 work

This commit is contained in:
Seaswimmer 2023-07-30 12:19:40 -04:00
parent d83571dbeb
commit 1874697228
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -120,7 +120,7 @@ class Galaxy(commands.Cog):
"""Calculates insurance. """Calculates insurance.
Please only use the value of a ship (from ``/shipinfo``) to calculate insurance and **not** ship cost.""" Please only use the value of a ship (from ``/shipinfo``) to calculate insurance and **not** ship cost."""
async def _insurance(self, ship_class: str, value: int): async def _insurance(self, ship_class: str, value: str):
"""This function does the actual math and configures the embed. """This function does the actual math and configures the embed.
Attributes Attributes
@ -129,7 +129,8 @@ class Galaxy(commands.Cog):
The class of the ship whose insurance you're checking. The class of the ship whose insurance you're checking.
value: Required[:class:`int`] value: Required[:class:`int`]
The value of the ship you're checking. This should be supplied by `/shipinfo`. Not the same as ship cost""" The value of the ship you're checking. This should be supplied by `/shipinfo`. Not the same as ship cost!"""
cleaned_value = ''.join(char for char in value if char.isdigit())
insurance_dict = { insurance_dict = {
"miner": 0.7, "miner": 0.7,
"freighter": 0.65, "freighter": 0.65,
@ -150,8 +151,8 @@ class Galaxy(commands.Cog):
humanized_class = ship_class.replace("_", " ").title() humanized_class = ship_class.replace("_", " ").title()
else: else:
humanized_class = ship_class.capitalize() humanized_class = ship_class.capitalize()
insurance_amount = (f"{round(value * insurance_dict[f'{ship_class}']):,}") insurance_amount = (f"{round(cleaned_value * insurance_dict[f'{ship_class}']):,}")
value_output = (f'{value:,}') value_output = (f'{cleaned_value:,}')
embed = discord.Embed(title="Insurance Payout", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Payout", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{humanized_class}", inline=False) embed.add_field(name="Ship Class", value=f"{humanized_class}", inline=False)
embed.add_field(name="Ship Value", value=f"{value_output}", inline=False) embed.add_field(name="Ship Value", value=f"{value_output}", inline=False)