mirror of
https://github.com/System-End/Discord-Bot.git
synced 2026-04-19 15:18:21 +00:00
Merge pull request #169 from fakesmile723/main
This commit is contained in:
commit
5bd7bce963
2 changed files with 6 additions and 3 deletions
|
|
@ -14,4 +14,5 @@ SPOTIFY_CLIENT_SECRET=
|
|||
LAVALINK_HOST=lava.link
|
||||
LAVALINK_PASSWORD=I'm a secret
|
||||
LAVALINK_PORT=80
|
||||
LAVALINK_SECURE=false
|
||||
OPENAI=
|
||||
|
|
|
|||
|
|
@ -68,7 +68,8 @@ if (clientID && clientSecret) {
|
|||
{
|
||||
host: process.env.LAVALINK_HOST || "lava.link",
|
||||
port: parseInt(process.env.LAVALINK_PORT) || 80,
|
||||
password: process.env.LAVALINK_PASSWORD || "CorwinDev"
|
||||
password: process.env.LAVALINK_PASSWORD || "CorwinDev",
|
||||
secure: Boolean(process.env.LAVALINK_SECURE) || false
|
||||
},
|
||||
],
|
||||
send(id, payload) {
|
||||
|
|
@ -89,7 +90,8 @@ if (clientID && clientSecret) {
|
|||
{
|
||||
host: process.env.LAVALINK_HOST || "lava.link",
|
||||
port: parseInt(process.env.LAVALINK_PORT) || 80,
|
||||
password: process.env.LAVALINK_PASSWORD || "CorwinDev"
|
||||
password: process.env.LAVALINK_PASSWORD || "CorwinDev",
|
||||
secure: Boolean(process.env.LAVALINK_SECURE) || false
|
||||
},
|
||||
],
|
||||
send(id, payload) {
|
||||
|
|
@ -216,4 +218,4 @@ client.on(Discord.ShardEvents.Error, error => {
|
|||
username: 'Bot Logs',
|
||||
embeds: [embed],
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue