diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-22 20:31:49 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-22 20:31:49 +1000 |
commit | a2f0c6f2828fa6c77c8ff68b3365a835dabe275b (patch) | |
tree | 53d27b03a4e1de562ad0b6cec3ed1fd29c5365c2 /bundle/src/Server.ts | |
parent | don't try to save undefined data in status (diff) | |
download | server-a2f0c6f2828fa6c77c8ff68b3365a835dabe275b.tar.xz |
Don't reset voice regions on server start
Diffstat (limited to 'bundle/src/Server.ts')
-rw-r--r-- | bundle/src/Server.ts | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts index 651e8e64..9cef9ed1 100644 --- a/bundle/src/Server.ts +++ b/bundle/src/Server.ts @@ -49,20 +49,20 @@ async function main() { endpointPublic: `ws://localhost:${port}`, }), }, - regions: { - default: "fosscord", - useDefaultAsOptimal: true, - available: [ - { - id: "fosscord", - name: "Fosscord", - endpoint: "127.0.0.1:3004", - vip: false, - custom: false, - deprecated: false, - }, - ], - }, + // regions: { + // default: "fosscord", + // useDefaultAsOptimal: true, + // available: [ + // { + // id: "fosscord", + // name: "Fosscord", + // endpoint: "slowcord.maddy.k.vu:3004", + // vip: false, + // custom: false, + // deprecated: false, + // }, + // ], + // }, } as any); //Sentry |