@@ -87,8 +87,7 @@ async def format_command_help(self, cmd):
8787 color = self .bot .main_color ,
8888 description = cmd .help
8989 )
90-
91-
90+
9291
9392 if not isinstance (cmd , commands .Group ):
9493 embed .set_footer (text = f'Permission level: { perm_level } ' )
@@ -1053,7 +1052,8 @@ def get_command(cmd):
10531052 if not permissions :
10541053 embed = Embed (
10551054 title = f'Permission entries for command `{ cmd .name } `:' ,
1056- description = 'No permission entries found.'
1055+ description = 'No permission entries found.' ,
1056+ color = self .bot .main_color ,
10571057 )
10581058 else :
10591059 values = []
@@ -1077,7 +1077,8 @@ def get_command(cmd):
10771077
10781078 embed = Embed (
10791079 title = f'Permission entries for command `{ cmd .name } `:' ,
1080- description = ', ' .join (values )
1080+ description = ', ' .join (values ),
1081+ color = self .bot .main_color
10811082 )
10821083 return embed
10831084
@@ -1110,7 +1111,8 @@ def get_level(perm_level):
11101111 embed = Embed (
11111112 title = 'Permission entries for permission '
11121113 f'level `{ perm_level .name } `:' ,
1113- description = 'No permission entries found.'
1114+ description = 'No permission entries found.' ,
1115+ color = self .bot .main_color ,
11141116 )
11151117 else :
11161118 values = []
@@ -1134,7 +1136,8 @@ def get_level(perm_level):
11341136
11351137 embed = Embed (
11361138 title = f'Permission entries for permission level `{ perm_level .name } `:' ,
1137- description = ', ' .join (values )
1139+ description = ', ' .join (values ),
1140+ color = self .bot .main_color ,
11381141 )
11391142 return embed
11401143
0 commit comments