diff --git a/node/boto.js b/node/boto.js index f44a436..4f770c1 100644 --- a/node/boto.js +++ b/node/boto.js @@ -86,11 +86,11 @@ client.on('message', (channel, tags, message, self) => { getRandomChatter(channel, { skipList: [ tags.username ] }) .then(user => { if(user === null) { - client.send(channel, `${tags.username}, there was no one to choose.`); + client.say(channel, `${tags.username}, there was no one to choose.`); } else { let { name, type } = user; - client.send(channel, `${tags.username}, I chose "${name}" with type ${type}!`); + client.say(channel, `${tags.username}, I chose "${name}" with type ${type}!`); } }) .catch(err => console.log('[ERR]', err));