This commit is contained in:
Daniel Odendahl Jr
2017-09-29 14:58:06 +00:00
parent 44a90cd260
commit f7a64e83f3
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -29,9 +29,9 @@ module.exports = class ZalgoCommand extends Command {
result += text[i];
if (text[i].length > 1) continue;
const counts = {
up: Math.floor(Math.random() * 8) + 1,
middle: Math.floor(Math.random() * 3),
down: Math.floor(Math.random() * 8) + 1
up: Math.floor(Math.random() * 16) + 1,
middle: Math.floor(Math.random() * 4) + 1,
down: Math.floor(Math.random() * 64) + 1
};
for (const type of Object.keys(counts)) {
let count = counts[type];