diff --git a/src/commands/rate.js b/src/commands/rate.js index d4f0eac..64ded10 100644 --- a/src/commands/rate.js +++ b/src/commands/rate.js @@ -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}**`); }; diff --git a/src/modules/music.js b/src/modules/music.js index a3bb99e..7e3083e 100644 --- a/src/modules/music.js +++ b/src/modules/music.js @@ -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) } -} +} \ No newline at end of file diff --git a/version.json b/version.json index 67e2097..f09800b 100644 --- a/version.json +++ b/version.json @@ -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." }