From d83571dbeb93111f2b367b9e98f42f5eb2b13355 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 30 Jul 2023 12:16:06 -0400 Subject: [PATCH] misc: changed the title of the insurance embed --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 58d7036..b1de3c6 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -152,7 +152,7 @@ class Galaxy(commands.Cog): humanized_class = ship_class.capitalize() insurance_amount = (f"{round(value * insurance_dict[f'{ship_class}']):,}") value_output = (f'{value:,}') - embed = discord.Embed(title="Insurance Cost", 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 Value", value=f"{value_output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{insurance_amount}", inline=False)