1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-14 16:00:17 +00:00

Chore 3.7,1

This commit is contained in:
MatteZ02 2020-07-01 03:04:27 +03:00
parent 7b581a9bed
commit 4f05312be8
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "musix", "name": "musix",
"version": "3.7.0", "version": "3.7.1",
"description": "V3 for Musix the discord music bot", "description": "V3 for Musix the discord music bot",
"main": "./index.js", "main": "./index.js",
"scripts": { "scripts": {

View File

@ -9,7 +9,7 @@ module.exports = {
execute(msg, args, client, Discord, command) { execute(msg, args, client, Discord, command) {
const queue = client.queue.get(msg.guild.id); const queue = client.queue.get(msg.guild.id);
if (client.funcs.check(client, msg, command)) { if (client.funcs.check(client, msg, command)) {
if (msg.content.contains("-force")) { if (msg.content.includes("-force")) {
if (queue) { if (queue) {
queue.voiceChannel.leave(); queue.voiceChannel.leave();
queue.exists = false; queue.exists = false;