mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-23 10:02:05 +02:00
Validator Test
This commit is contained in:
@@ -15,7 +15,8 @@ module.exports = class MotivateCommand extends commando.Command {
|
||||
args: [{
|
||||
key: 'thing',
|
||||
prompt: 'What do you want to motivate?',
|
||||
type: 'string'
|
||||
type: 'string',
|
||||
default: ''
|
||||
}]
|
||||
});
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ module.exports = class RandomNameGen extends commando.Command {
|
||||
randomFirstFemale = randomFirstFemale[Math.floor(Math.random() * randomFirstFemale.length)];
|
||||
let randomLast = ["Walker", "Tworni", "Ross", "Smith", "Odendahl", "Deere", "Brown", "Williams", "Jones", "Miles", "Moss", "Roberto", "McFly", "McDonald", "Lewis", "Armstrong", "Stevenson", "Schwarzenegger", "Robinson", "Parker", "Piper", "Johnson", "Brantley", "Stewart", "Ree", "Talbot", "Seville", "Peace", "Spielberg", "Baggins", "Wilborn", "Vankirk", "Shireman", "Jimerson", "Masters", "Hack", "Satcher", "Younkin", "Aguila", "Duffey", "Burgin", "Highfall", "Wee", "Solari", "Tomaselli", "Basler", "Difranco", "Latch", "Rives", "Dolan", "Abraham", "Holter", "Portugal", "Lininger", "Holst", "Mccroy", "Follmer", "Hotchkiss", "Gassaway", "Wang", "Agron", "Raasch", "Gourd", "Czaja", "Marquart", "Papadopoulos", "Ringer", "Lax", "Sperling", "Galusha", "Alston"];
|
||||
randomLast = randomLast[Math.floor(Math.random() * randomLast.length)];
|
||||
let gender = args.gender;
|
||||
let gender = args.gender.toLowerCase();
|
||||
if (gender === "male") {
|
||||
return message.channel.send(`${randomFirstMale} ${randomLast}`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user