From 8b9ac4dabeb439865ca5194579e1aa33585d88a3 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 21 Feb 2021 13:50:38 -0500 Subject: [PATCH] Adjust think-of --- commands/random-seed/think-of.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random-seed/think-of.js b/commands/random-seed/think-of.js index cd5ff009..59564911 100644 --- a/commands/random-seed/think-of.js +++ b/commands/random-seed/think-of.js @@ -58,7 +58,7 @@ module.exports = class ThinkOfCommand extends Command { } else if (girlfriendUser && owner) { thought = thoughts[5]; } else { - const calculated = Math.abs(Number.parseInt(BigInt(first.id) - BigInt(second.id), 10)); + const calculated = Number.parseInt(BigInt(first.id) - BigInt(second.id), 10); const random = MersenneTwister19937.seed(calculated); thought = thoughts[integer(0, thoughts.length - 1)(random)]; }