deliminate on space not newline

This commit is contained in:
bobloy 2021-04-14 09:44:28 -04:00
parent 10ed1f9b9f
commit 28edcc1fdd

View File

@ -100,7 +100,7 @@ class StealEmoji(Cog):
await ctx.maybe_send_embed("No stolen emojis yet")
return
for page in pagify(emoj):
for page in pagify(emoj, delims=[" "]):
await ctx.maybe_send_embed(page)
@checks.is_owner()