summaryrefslogtreecommitdiff
path: root/node_modules/discord.js/src/structures/VoiceRegion.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-03 02:48:28 -0700
committer8cy <[email protected]>2020-04-03 02:48:28 -0700
commitf9159ea2d994e14180fb02ab562f0119513e67cf (patch)
tree09d14cdf05456567156738b681379d4bccd64e5c /node_modules/discord.js/src/structures/VoiceRegion.js
parent2020/04/03, 02:42, V1.2.1 (diff)
downloads5nical-f9159ea2d994e14180fb02ab562f0119513e67cf.tar.xz
s5nical-f9159ea2d994e14180fb02ab562f0119513e67cf.zip
2020/04/03, 02:47, V1.2.2
Diffstat (limited to 'node_modules/discord.js/src/structures/VoiceRegion.js')
-rw-r--r--node_modules/discord.js/src/structures/VoiceRegion.js50
1 files changed, 0 insertions, 50 deletions
diff --git a/node_modules/discord.js/src/structures/VoiceRegion.js b/node_modules/discord.js/src/structures/VoiceRegion.js
deleted file mode 100644
index dc6b461..0000000
--- a/node_modules/discord.js/src/structures/VoiceRegion.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
- * Represents a Discord voice region for guilds.
- */
-class VoiceRegion {
- constructor(data) {
- /**
- * The ID of the region
- * @type {string}
- */
- this.id = data.id;
-
- /**
- * Name of the region
- * @type {string}
- */
- this.name = data.name;
-
- /**
- * Whether the region is VIP-only
- * @type {boolean}
- */
- this.vip = data.vip;
-
- /**
- * Whether the region is deprecated
- * @type {boolean}
- */
- this.deprecated = data.deprecated;
-
- /**
- * Whether the region is optimal
- * @type {boolean}
- */
- this.optimal = data.optimal;
-
- /**
- * Whether the region is custom
- * @type {boolean}
- */
- this.custom = data.custom;
-
- /**
- * A sample hostname for what a connection might look like
- * @type {string}
- */
- this.sampleHostname = data.sample_hostname;
- }
-}
-
-module.exports = VoiceRegion;