Merge branch 'master' of github.com:woomyware/woomy

This commit is contained in:
Lukáš H 2020-05-12 10:42:03 +02:00
commit f9d7743caf
3 changed files with 8 additions and 3 deletions

View File

@ -16,6 +16,11 @@ var rating = [
"9/10",
"10/10"
];
if (message.content.includes("@everyone")) {
return message.channel.send('>:(');
}
let mess = rating.random();
message.channel.send(`<:star:618393201501536258> I give ${args.join(" ")} a **${mess}**`);
};

View File

@ -69,7 +69,7 @@ exports.play = async function (client, message, query, playNext, ignoreQueue) {
const guild = exports.getGuild(message.guild.id)
guild.message = message
message.channel.startTyping()
// message.channel.startTyping()
if (!message.member.voice.channel && !guild.voiceChannel) {
message.channel.stopTyping()
@ -243,4 +243,4 @@ exports.skip = function (guild, reason) {
if (g.dispatcher) {
g.dispatcher.end(reason)
}
}
}

View File

@ -1,4 +1,4 @@
{
"number": "1.3.0",
"number": "1.3.1",
"changelog": "**1.3.0 Changelog:**\n> • Music module has been rewritten for better stability and lots more features\n> • Force disconnecting Woomy from a voice channel no longer breaks music\n> • Music should (hopefully) break less in general\n> • Existing music commands have been rewritten\n> • Added the following new commands: fixmusic, movehere, movesong, playnext, shuffle, songinfo, volume\n> • Updated ship command\n**Notes:**\n> • This will be the final major update to Woomy V1, as we are shifting our focus to Woomy V2, which is a complete rewrite."
}