diff --git a/commands/search/google.js b/commands/search/google.js index d01965ca..7d0b6fe9 100644 --- a/commands/search/google.js +++ b/commands/search/google.js @@ -31,7 +31,7 @@ module.exports = class DefineCommand extends commando.Command { let href = $('.r').first().find('a').first().attr('href'); if (!href) return Promise.reject(new Error('NO RESULTS')); href = querystring.parse(href.replace('/url?', '')); - message.edit(href.q); + message.channel.send(href.q); }).catch(function (err) { message.channel.send(':x: Error! No Results Found!'); });