From 2db94d700501593b3789d1a770a1cdd4ba83ffc9 Mon Sep 17 00:00:00 2001 From: Jimmybald1 <147992650+IBBCalc@users.noreply.github.com> Date: Thu, 15 May 2025 09:06:47 +0200 Subject: [PATCH] Incorrectly used this in common --- src/utils/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/common.ts b/src/utils/common.ts index 069cdb8f1f0..b9111578e2f 100644 --- a/src/utils/common.ts +++ b/src/utils/common.ts @@ -106,7 +106,7 @@ export function randSeedInt(range: number, min = 0): number { * @returns a random integer between {@linkcode min} and {@linkcode max} inclusive */ export function randSeedIntRange(min: number, max: number): number { - return this.randSeedInt(max - min + 1, min); + return randSeedInt(max - min + 1, min); } /**