Update 'node/boto.js'
This commit is contained in:
parent
624779fabf
commit
077f7c421b
|
@ -250,8 +250,8 @@ client.on('message', (channel, tags, message, self) => {
|
|||
// MINI GAME
|
||||
if(command === 'beta' ||
|
||||
command === 'test')
|
||||
const result = Math.floor(Math.random() * 100) + 1;
|
||||
client.say(channel, `/me Bleep-Bloop! @${tags.username} has ${result}% resistence to bullshit!`);
|
||||
const rng100 = Math.floor(Math.random() * 100) + 1;
|
||||
client.say(channel, `/me Bleep-Bloop! @${tags.username} has ${rng100}% resistence to bullshit!`);
|
||||
}
|
||||
|
||||
// TODO:
|
||||
|
|
Loading…
Reference in New Issue