diff --git a/src/app/cmds/Fun/explode.js b/src/app/cmds/Fun/explode.js index 96193f8..949d5ca 100644 --- a/src/app/cmds/Fun/explode.js +++ b/src/app/cmds/Fun/explode.js @@ -9,7 +9,7 @@ module.exports = { aliases: [], syntax: [], execute: async(app, message, args) => { - var target = message.mentions.users.first() || args[0], + var target = message.mentions.users.first() || args.slice(0).join(" "), sender = message.author; if (!target) return app.functions.msgHandler(message, { content: "You need to add something to explode!!" }, 0, true); else if (target == sender) return app.functions.msgHandler(message, { content: "Why would you want to send a bomb to yourself???" }, 0, true); diff --git a/src/app/cmds/General/about.js b/src/app/cmds/General/about.js index 43d233f..c76aeed 100644 --- a/src/app/cmds/General/about.js +++ b/src/app/cmds/General/about.js @@ -38,4 +38,4 @@ module.exports = { }] }); } -} \ No newline at end of file +}