mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-04 23:42:18 +02:00
Incorrectly used this in common
This commit is contained in:
parent
6f096f43a7
commit
2db94d7005
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user