forked from Supositware/Haha-Yes
random number dosent put 10 anymore
This commit is contained in:
parent
52a7a1c48d
commit
204bb8bcb1
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ module.exports = class sayCommand extends Command {
|
|||
text = text.replace(/\[noun\]/, noun[randNumber(noun)])
|
||||
text = text.replace(/\[adjective\]/, adjective[randNumber(adjective)])
|
||||
text = text.replace(/\[member\]/, message.guild.members.random().user.username)
|
||||
text = text.replace(/\[number\]/, Math.floor((Math.random() * 10) + 1))
|
||||
text = text.replace(/\[number\]/, Math.floor((Math.random() * 9) + 1))
|
||||
} while( text.includes('[verb]') || text.includes('[adverb]') || text.includes('[noun]') || text.includes('[adjective]') || text.includes('[member]') || text.includes('[number]') )
|
||||
|
||||
// Send the final text
|
||||
|
|
Loading…
Reference in a new issue