diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-10 17:31:12 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-10 17:31:12 -0500 |
commit | dde11c5ff2ceab59d07c48458a5947e0645ff856 (patch) | |
tree | 9a9a1fd09add845098ab9989348930f75fe2d7b5 /src/listeners/track-manual-punishments | |
parent | 1d383a1c7058842f95472a6e66b7f4fbdc042635 (diff) | |
download | tanzanite-dde11c5ff2ceab59d07c48458a5947e0645ff856.tar.gz tanzanite-dde11c5ff2ceab59d07c48458a5947e0645ff856.tar.bz2 tanzanite-dde11c5ff2ceab59d07c48458a5947e0645ff856.zip |
chore: bump djs
Diffstat (limited to 'src/listeners/track-manual-punishments')
4 files changed, 4 insertions, 4 deletions
diff --git a/src/listeners/track-manual-punishments/modlogSyncBan.ts b/src/listeners/track-manual-punishments/modlogSyncBan.ts index 6048235..9886530 100644 --- a/src/listeners/track-manual-punishments/modlogSyncBan.ts +++ b/src/listeners/track-manual-punishments/modlogSyncBan.ts @@ -52,7 +52,7 @@ export default class ModlogSyncBanListener extends BushListener { if (!logChannel) return; const logEmbed = new Embed() - .setColor(util.colors.RED) + .setColor(util.colors.Red) .setTimestamp() .setFooter({ text: `CaseID: ${log.id}` }) .setAuthor({ diff --git a/src/listeners/track-manual-punishments/modlogSyncKick.ts b/src/listeners/track-manual-punishments/modlogSyncKick.ts index 814b624..b7762db 100644 --- a/src/listeners/track-manual-punishments/modlogSyncKick.ts +++ b/src/listeners/track-manual-punishments/modlogSyncKick.ts @@ -52,7 +52,7 @@ export default class ModlogSyncKickListener extends BushListener { if (!logChannel) return; const logEmbed = new Embed() - .setColor(util.colors.RED) + .setColor(util.colors.Red) .setTimestamp() .setFooter({ text: `CaseID: ${log.id}` }) .setAuthor({ diff --git a/src/listeners/track-manual-punishments/modlogSyncTimeout.ts b/src/listeners/track-manual-punishments/modlogSyncTimeout.ts index 1289f4c..21dde1a 100644 --- a/src/listeners/track-manual-punishments/modlogSyncTimeout.ts +++ b/src/listeners/track-manual-punishments/modlogSyncTimeout.ts @@ -57,7 +57,7 @@ export default class ModlogSyncTimeoutListener extends BushListener { if (!logChannel) return; const logEmbed = new Embed() - .setColor(util.colors[newTime ? 'ORANGE' : 'GREEN']) + .setColor(util.colors[newTime ? 'Orange' : 'Green']) .setTimestamp() .setFooter({ text: `CaseID: ${log.id}` }) .setAuthor({ diff --git a/src/listeners/track-manual-punishments/modlogSyncUnban.ts b/src/listeners/track-manual-punishments/modlogSyncUnban.ts index a92c1e9..a268ef4 100644 --- a/src/listeners/track-manual-punishments/modlogSyncUnban.ts +++ b/src/listeners/track-manual-punishments/modlogSyncUnban.ts @@ -51,7 +51,7 @@ export default class ModlogSyncUnbanListener extends BushListener { if (!logChannel) return; const logEmbed = new Embed() - .setColor(util.colors.ORANGE) + .setColor(util.colors.Orange) .setTimestamp() .setFooter({ text: `CaseID: ${log.id}` }) .setAuthor({ |