Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

200
Views
roleUpdate Event Running When Changing Role Position Discord.JS

I have this code that gets sent when a roles permissions gets updating but its gets sent when moving a role and the permissions are the same, why is this happening?

module.exports = async (client, oldRole, newRole) => {
    const allLogs = await newRole.guild.fetchAuditLogs({ type: "ROLE_UPDATE" });
    const fetchModerator = await allLogs.entries.first();
    if (oldRole.permissions !== newRole.permissions) {
        const embed = new Discord.MessageEmbed()
            .setAuthor({ name: fetchModerator.executor.tag, iconURL: fetchModerator.executor.displayAvatarURL({ dynamic: true }) })
            .setTitle('Role Permissions Updated')
            .setColor(config.colour)
            .setTimestamp()
            .addFields(
                {
                    name: "__Role__",
                    value: `<@&${newRole.id}>`,
                    inline: true
                },
                {
                    name: "__Old Perms__",
                    value: oldRole.permissions.toArray().join('\n'),
                    inline: true
                },
                {
                    name: "__New Perms__",
                    value: newRole.permissions.toArray().join('\n'),
                    inline: true
                },
                {
                    name: "__Updater__",
                    value: `<@${fetchModerator.executor.id}>`,
                    inline: true
                }
            )
        return logChannel.send({ embeds: [embed] })
    }
}

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!