Fixed settings alignment in .ascii settings output

This commit is contained in:
Dionysus 2023-06-28 16:07:44 -04:00
parent 7cf2a8355e
commit af68c2950f
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ class Bot():
elif args[1] == 'settings':
if len(args) == 2:
for item in self.settings:
await self.sendmsg(chan, color(item.ljust(10), yellow) + color(str(self.settings[item]), grey))
await self.sendmsg(chan, color(item.ljust(15), yellow) + color(str(self.settings[item]), grey))
elif len(args) == 4 and is_admin(ident):
setting = args[2]
option = args[3]