can also choose random user

This commit is contained in:
Loic Bersier 2018-11-28 19:00:23 +01:00
parent 986b76bd35
commit 319c45b0f0

View file

@ -41,7 +41,8 @@ module.exports = class RandomCommand extends Command {
text = text.replace(/\[adverb\]/, adverb[randNumber(adverb)])
text = text.replace(/\[noun\]/, noun[randNumber(noun)])
text = text.replace(/\[adjective\]/, adjective[randNumber(adjective)])
} while( text.includes('[verb]') || text.includes('[adverb]') || text.includes('[noun]') || text.includes('[adjective]') )
text = text.replace(/\[member\]/, message.guild.members.random().user.username)
} while( text.includes('[verb]') || text.includes('[adverb]') || text.includes('[noun]') || text.includes('[adjective]' || text.includes('[member]')) )
// Send the final text
message.say(text);