diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index f30c93cb..23459775 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -2,4 +2,5 @@ Update _ January 2024 +- fix: user and mod log exclude id's (18/01/2024) - feat: New FBW Utils and Moderation bot (08/01/2024) diff --git a/config/production.json b/config/production.json index bfabf863..42d4964f 100644 --- a/config/production.json +++ b/config/production.json @@ -24,10 +24,9 @@ "guildId": "738864299392630914", "modLogExclude": [ "910632773117702185", - "856826179491594271", - "864492608163807302", - "1117793446497886309", - "1163130603219206194" + "1195041929570832475", + "1195045377431322754", + "1163130801131634868" ], "roleAssignmentIds": [ { @@ -116,10 +115,8 @@ "userLogExclude": [ "628400349979344919", "910632773117702185", - "856826179491594271", - "864492608163807302", - "1117793446497886309", - "1163130603219206194", + "1195041929570832475", + "1195045377431322754", "1163130801131634868" ] } diff --git a/config/staging.json b/config/staging.json index 1ac38032..f8b5613f 100644 --- a/config/staging.json +++ b/config/staging.json @@ -23,11 +23,11 @@ }, "guildId": "1162804406681608252", "modLogExclude": [ + "628400349979344919", "910632773117702185", - "856826179491594271", - "864492608163807302", - "1117793446497886309", - "1163130603219206194" + "1195041929570832475", + "1195045377431322754", + "1163130801131634868" ], "roleAssignmentIds": [ { @@ -110,10 +110,8 @@ "userLogExclude": [ "628400349979344919", "910632773117702185", - "856826179491594271", - "864492608163807302", - "1117793446497886309", - "1163130603219206194", + "1195041929570832475", + "1195045377431322754", "1163130801131634868" ] } diff --git a/src/events/logging/messageUpdate.ts b/src/events/logging/messageUpdate.ts index 9b1a31ca..715d8f3e 100644 --- a/src/events/logging/messageUpdate.ts +++ b/src/events/logging/messageUpdate.ts @@ -19,7 +19,7 @@ export default event(Events.MessageUpdate, async (_, oldMessage, newMessage) => if (userLogsChannel && !constantsConfig.userLogExclude.includes(oldMessage.author!.id)) { const messageUpdateEmbed = makeEmbed({ color: Colors.Orange, - thumbnail: { url: `${imageBaseUrl}/moderation/message_updated.png` }, + thumbnail: { url: `${imageBaseUrl}/moderation/message_edited.png` }, author: { name: oldMessage.author.tag, iconURL: oldMessage.author.displayAvatarURL(),