From 748724793b79026981d0cc31a69d1f7fbd6b7044 Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Sat, 12 Feb 2022 22:36:34 +0000 Subject: [PATCH] Update 'node/boto.js' --- node/boto.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/boto.js b/node/boto.js index d088f04..0d52abf 100644 --- a/node/boto.js +++ b/node/boto.js @@ -82,7 +82,7 @@ client.on('message', (channel, tags, message, self) => { // CMD | CHAT COMMANDS | Start if(command === 'randomuser') { // Get a random user but skip the user requesting a random user - getRandomChatter(channel, { skipList: [ userstate.username ] }) + getRandomChatter(channel, { skipList: [ tags.username ] }) .then(user => { if(user === null) { client.send(channel, `${userstate.username}, there was no one to choose.`);