diff --git a/src/structures/Role.js b/src/structures/Role.js index 5936da0fc..c15ff4be0 100644 --- a/src/structures/Role.js +++ b/src/structures/Role.js @@ -321,6 +321,7 @@ class Role { * @returns {string} */ toString() { + if (this.id === this.guild.id) return '@everyone'; return `<@&${this.id}>`; }