forked from embee/woomy
Merge branch 'master' of github.com:woomyware/woomy
This commit is contained in:
commit
f9d7743caf
3 changed files with 8 additions and 3 deletions
|
@ -16,6 +16,11 @@ var rating = [
|
||||||
"9/10",
|
"9/10",
|
||||||
"10/10"
|
"10/10"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if (message.content.includes("@everyone")) {
|
||||||
|
return message.channel.send('>:(');
|
||||||
|
}
|
||||||
|
|
||||||
let mess = rating.random();
|
let mess = rating.random();
|
||||||
message.channel.send(`<:star:618393201501536258> I give ${args.join(" ")} a **${mess}**`);
|
message.channel.send(`<:star:618393201501536258> I give ${args.join(" ")} a **${mess}**`);
|
||||||
};
|
};
|
||||||
|
|
|
@ -69,7 +69,7 @@ exports.play = async function (client, message, query, playNext, ignoreQueue) {
|
||||||
const guild = exports.getGuild(message.guild.id)
|
const guild = exports.getGuild(message.guild.id)
|
||||||
guild.message = message
|
guild.message = message
|
||||||
|
|
||||||
message.channel.startTyping()
|
// message.channel.startTyping()
|
||||||
|
|
||||||
if (!message.member.voice.channel && !guild.voiceChannel) {
|
if (!message.member.voice.channel && !guild.voiceChannel) {
|
||||||
message.channel.stopTyping()
|
message.channel.stopTyping()
|
||||||
|
@ -243,4 +243,4 @@ exports.skip = function (guild, reason) {
|
||||||
if (g.dispatcher) {
|
if (g.dispatcher) {
|
||||||
g.dispatcher.end(reason)
|
g.dispatcher.end(reason)
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -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."
|
"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."
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue