From 72f7a4b25e8e29e3bc506b34766483a1acc46e41 Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 18 Dec 2023 04:13:20 -0600 Subject: [PATCH] [Discord] Improve adventure stats woodcutting command formatting --- Discord/cogs/adventure.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Discord/cogs/adventure.py b/Discord/cogs/adventure.py index 94bb77f93c..aa2de5dff8 100644 --- a/Discord/cogs/adventure.py +++ b/Discord/cogs/adventure.py @@ -257,9 +257,11 @@ async def stats_woodcutting(self, ctx): '''Woodcutting stats''' player = await self.get_adventure_player(ctx.author.id) woodcutting_xp = player.woodcutting_xp - await ctx.embed_reply(f":evergreen_tree: Woodcutting xp: {woodcutting_xp:,}\n" - f"{self.level_bar(woodcutting_xp)}\n" - f"{xp_left_to_next_lvl(woodcutting_xp):,} xp to next level") + await ctx.embed_reply( + f":evergreen_tree: Woodcutting xp: {woodcutting_xp:,}\n" + f"{self.level_bar(woodcutting_xp)}\n" + f"{xp_left_to_next_lvl(woodcutting_xp):,} xp to next level" + ) @staticmethod def level_bar(xp):