diff --git a/Discord/cogs/adventure.py b/Discord/cogs/adventure.py index 7656d0d7d6..34237f89b3 100644 --- a/Discord/cogs/adventure.py +++ b/Discord/cogs/adventure.py @@ -199,13 +199,17 @@ async def forage_stop(self, ctx): player = await self.get_adventure_player(ctx.author.id) stopped = await player.stop_foraging() if stopped[0]: - output = (f":herb: You were foraging {stopped[0]} for {stopped[1]:,.2f} min. and received {stopped[2]:,} {stopped[0]} and xp.\n" - f"While you were foraging, you also found {stopped[3]:,} {FORAGEABLES[stopped[0]][0]}") + output = ( + f":herb: You were foraging {stopped[0]} for {stopped[1]:,.2f} min. and received {stopped[2]:,} {stopped[0]} and xp.\n" + f"While you were foraging, you also found {stopped[3]:,} {FORAGEABLES[stopped[0]][0]}" + ) if stopped[4]: output += f" and {stopped[4]:,} {FORAGEABLES[stopped[0]][1]}!" await ctx.embed_reply(output) elif stopped[1]: - await ctx.embed_reply(f":no_entry: You're currently {stopped[1]}! You aren't foraging right now") + await ctx.embed_reply( + f":no_entry: You're currently {stopped[1]}! You aren't foraging right now" + ) else: await ctx.embed_reply(":no_entry: You aren't foraging")