Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
psdfasdf
Browse files Browse the repository at this point in the history
  • Loading branch information
xiboon committed Dec 19, 2021
1 parent 13ade2e commit b532f7f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cmds/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,11 @@ export async function run(
.addField('prefix', settings.prefix)
.addField('logs', settings.logs ? 'Włączone' : 'Wyłączone')

.addField('modlog', settings.modLogs ? 'Włączone' : 'Wyłączone')
.addField('modlog', settings.modLogs ? 'Włączone' : 'Wyłączone');
if (!settings.muteRole) {
listEmbed.addField('muteRole', 'Brak');
}
listEmbed
.addField('muteRole', `<@&${settings.muteRole || 'Brak'}>`)
.setFooter(client.footer);
if (settings.logsChannel) {
Expand Down

0 comments on commit b532f7f

Please sign in to comment.