main: Made marriage display more readable

This commit is contained in:
Yuki Joou 2023-02-26 16:50:15 +01:00
parent d5528957b2
commit 44d881dfa3

View file

@ -81,7 +81,7 @@ async def marriage(
await context.respond(f"{who_to_check.mention} is not married yet :(")
return
marriage_formatted = '💞'.join(
marriage_formatted = ' 💞 '.join(
[f"<@{user}>" for user in marriage]
)
await context.respond(marriage_formatted)