Incorrectly used this in common

This commit is contained in:
Jimmybald1 2025-05-15 09:06:47 +02:00
parent 6f096f43a7
commit 2db94d7005

View File

@ -106,7 +106,7 @@ export function randSeedInt(range: number, min = 0): number {
* @returns a random integer between {@linkcode min} and {@linkcode max} inclusive * @returns a random integer between {@linkcode min} and {@linkcode max} inclusive
*/ */
export function randSeedIntRange(min: number, max: number): number { export function randSeedIntRange(min: number, max: number): number {
return this.randSeedInt(max - min + 1, min); return randSeedInt(max - min + 1, min);
} }
/** /**