prefix hotfix
This commit is contained in:
4
.github/workflows/deploy.yaml
vendored
4
.github/workflows/deploy.yaml
vendored
@@ -19,5 +19,5 @@ jobs:
|
||||
docker rm muzykant || true
|
||||
docker stop muzykant2 || true
|
||||
docker rm muzykant2 || true
|
||||
docker run -d -e "DISCORD_TOKEN=${{ secrets.DISCORD_TOKEN_1 }}" -e "PREFIX= ;" --restart always --name muzykant ${{ github.repository }}
|
||||
docker run -d -e "DISCORD_TOKEN=${{ secrets.DISCORD_TOKEN_2 }}" -e "PREFIX= :" --restart always --name muzykant2 ${{ github.repository }}
|
||||
docker run -d -e "DISCORD_TOKEN=${{ secrets.DISCORD_TOKEN_1 }}" -e "PREFIX=;" --restart always --name muzykant ${{ github.repository }}
|
||||
docker run -d -e "DISCORD_TOKEN=${{ secrets.DISCORD_TOKEN_2 }}" -e "PREFIX=:" --restart always --name muzykant2 ${{ github.repository }}
|
||||
|
||||
32
config.js
32
config.js
@@ -1,23 +1,35 @@
|
||||
module.exports = {
|
||||
app: {
|
||||
px: 'XXX',
|
||||
token: 'XXX',
|
||||
playing: 'by Zerio ❤️'
|
||||
px: "XXX",
|
||||
token: "XXX",
|
||||
playing: "ciepłe dranie",
|
||||
},
|
||||
|
||||
opt: {
|
||||
DJ: {
|
||||
enabled: false,
|
||||
roleName: 'DJ',
|
||||
commands: ['back', 'clear', 'filter', 'loop', 'pause', 'resume', 'seek', 'shuffle', 'skip', 'stop', 'volume']
|
||||
roleName: "DJ",
|
||||
commands: [
|
||||
"back",
|
||||
"clear",
|
||||
"filter",
|
||||
"loop",
|
||||
"pause",
|
||||
"resume",
|
||||
"seek",
|
||||
"shuffle",
|
||||
"skip",
|
||||
"stop",
|
||||
"volume",
|
||||
],
|
||||
},
|
||||
maxVol: 100,
|
||||
loopMessage: false,
|
||||
discordPlayer: {
|
||||
ytdlOptions: {
|
||||
quality: 'highestaudio',
|
||||
highWaterMark: 1 << 25
|
||||
}
|
||||
}
|
||||
}
|
||||
quality: "highestaudio",
|
||||
highWaterMark: 1 << 25,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user