Update 'node/boto.js'

This commit is contained in:
Sarimoko 2022-02-12 23:31:54 +00:00
parent 624779fabf
commit 077f7c421b
1 changed files with 2 additions and 2 deletions

View File

@ -250,8 +250,8 @@ client.on('message', (channel, tags, message, self) => {
// MINI GAME // MINI GAME
if(command === 'beta' || if(command === 'beta' ||
command === 'test') command === 'test')
const result = Math.floor(Math.random() * 100) + 1; const rng100 = Math.floor(Math.random() * 100) + 1;
client.say(channel, `/me Bleep-Bloop! @${tags.username} has ${result}% resistence to bullshit!`); client.say(channel, `/me Bleep-Bloop! @${tags.username} has ${rng100}% resistence to bullshit!`);
} }
// TODO: // TODO: