diff --git a/src/structures/Guild.js b/src/structures/Guild.js index ece8a530c..47ffbde8a 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -901,7 +901,7 @@ class Guild extends Base { _data.verification_level = typeof data.verificationLevel === 'number' ? Number(data.verificationLevel) - : ExplicitContentFilterLevels.indexOf(data.verificationLevel); + : VerificationLevels.indexOf(data.verificationLevel); } if (typeof data.afkChannel !== 'undefined') { _data.afk_channel_id = this.client.channels.resolveID(data.afkChannel);