Skip to content

Commit c0e50cf

Browse files
committed
Embed inline = false
1 parent b47c8b5 commit c0e50cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cogs/utility.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ async def send_group_help(self, group):
117117
description=self.process_help_msg(group.help)
118118
)
119119

120-
embed.add_field(name='Permission level', value=perm_level)
120+
embed.add_field(name='Permission level', value=perm_level, inline=False)
121121
format_ = ''
122122
length = len(group.commands)
123123

@@ -131,7 +131,7 @@ async def send_group_help(self, group):
131131
branch = '├─'
132132
format_ += f'`{branch} {command.name}` - {command.short_doc}\n'
133133

134-
embed.add_field(name='Sub Commands', value=format_)
134+
embed.add_field(name='Sub Commands', value=format_, inline=False)
135135
embed.set_footer(
136136
text=f'Type "{self.clean_prefix}{self.command_attrs["name"]} command" '
137137
'for more info on a command.'

0 commit comments

Comments
 (0)