diff --git a/cogs/currency.py b/cogs/currency.py index 3a49016..ed17209 100644 --- a/cogs/currency.py +++ b/cogs/currency.py @@ -330,12 +330,12 @@ async def rich(self, ctx, scope="server"): for whales in guardian_with_gems: if counter == 1: output = output + \ - f"{counter}. Lvl {whales[3]} " \ - + f"{whales[0]:,d} 💎 - `{whales[1]}`" + f"{counter}. {whales[0]:,d} 💎 - " \ + + f"Lvl {whales[3]} `{whales[1]}`" else: output = output \ - + f"\n{counter}. Lvl {whales[3]} " \ - + f"{whales[0]:,d} 💎 - `{whales[1]}`" + + f"\n{counter}. {whales[0]:,d} 💎 - " \ + + f"Lvl {whales[3]} `{whales[1]}`" # Get username if any username = db_ailie.get_username(whales[2]) diff --git a/cogs/pvp.py b/cogs/pvp.py index d14200e..dce984a 100644 --- a/cogs/pvp.py +++ b/cogs/pvp.py @@ -891,12 +891,12 @@ async def rank(self, ctx, scope="server"): for barbarian in guardian_with_trophy: if counter == 1: output = output \ - + f"{counter}. Lvl {barbarian[3]} " \ - + f"{barbarian[0]:,d} 🏆 - `{barbarian[1]}`" + + f"{counter}. {barbarian[0]:,d} 🏆 - " \ + + f"Lvl {barbarian[3]} `{barbarian[1]}`" else: output = output + \ - f"\n{counter}. Lvl {barbarian[3]} " \ - + f"{barbarian[0]:,d} 🏆 - `{barbarian[1]}`" + f"\n{counter}. {barbarian[0]:,d} 🏆 - " \ + + f"Lvl {barbarian[3]} `{barbarian[1]}`" # Get username if any username = db_ailie.get_username(barbarian[2])