diff --git a/packages/discord.js/src/structures/VoiceRegion.js b/packages/discord.js/src/structures/VoiceRegion.js index fe399b49d..be46b4df3 100644 --- a/packages/discord.js/src/structures/VoiceRegion.js +++ b/packages/discord.js/src/structures/VoiceRegion.js @@ -19,12 +19,6 @@ class VoiceRegion { */ this.name = data.name; - /** - * Whether the region is VIP-only - * @type {boolean} - */ - this.vip = data.vip; - /** * Whether the region is deprecated * @type {boolean} diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index 6a104c7c6..c605abec5 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -2459,7 +2459,6 @@ export class VoiceRegion { public id: string; public name: string; public optimal: boolean; - public vip: boolean; public toJSON(): unknown; }