removed redundant space from insurance

This commit is contained in:
SeaswimmerTheFsh 2023-04-05 22:55:43 -04:00
parent 64ee569098
commit 67f5a9e8be

View file

@ -131,7 +131,7 @@ class Galaxy(commands.Cog):
ship_class = "Miner" ship_class = "Miner"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -144,7 +144,7 @@ class Galaxy(commands.Cog):
ship_class = "Freighter" ship_class = "Freighter"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -157,7 +157,7 @@ class Galaxy(commands.Cog):
ship_class = "Frigate" ship_class = "Frigate"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -170,7 +170,7 @@ class Galaxy(commands.Cog):
ship_class = "Destroyer" ship_class = "Destroyer"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -183,7 +183,7 @@ class Galaxy(commands.Cog):
ship_class = "Cruiser" ship_class = "Cruiser"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -196,7 +196,7 @@ class Galaxy(commands.Cog):
ship_class = "Battlecruiser" ship_class = "Battlecruiser"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -209,7 +209,7 @@ class Galaxy(commands.Cog):
ship_class = "Battleship" ship_class = "Battleship"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -222,7 +222,7 @@ class Galaxy(commands.Cog):
ship_class = "Dreadnought" ship_class = "Dreadnought"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -235,7 +235,7 @@ class Galaxy(commands.Cog):
ship_class = "Carrier" ship_class = "Carrier"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -248,7 +248,7 @@ class Galaxy(commands.Cog):
ship_class = "Super Capital" ship_class = "Super Capital"
embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None)) embed = discord.Embed(title="Insurance Cost", color=await self.bot.get_embed_color(None))
embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False) embed.add_field(name="Ship Class", value=f"{ship_class}", inline=False)
embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False) embed.add_field(name="Ship Cost", value=f"{cost_output}", inline=False)
embed.add_field(name="Insurance Amount", value=f"{output}", inline=False) embed.add_field(name="Insurance Amount", value=f"{output}", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)