mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
fard
This commit is contained in:
parent
e1647e6603
commit
55c4e03be1
1 changed files with 5 additions and 3 deletions
|
@ -9,8 +9,10 @@ function getRandomItem(arr) {
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function genUsername() {
|
||||||
const username = getRandomItem(names) + getRandomItem(names) + (10 + Math.floor(Math.random() * 90));
|
const username = getRandomItem(names) + getRandomItem(names) + (10 + Math.floor(Math.random() * 90));
|
||||||
|
|
||||||
module.exports = function () {
|
|
||||||
return username;
|
return username;
|
||||||
};
|
}
|
||||||
|
|
||||||
|
module.exports = genUsername;
|
||||||
|
|
Loading…
Reference in a new issue