refactor: rename RNG method from nextFloat to nextFloat1 for consistency across the codebase
This commit is contained in:
@@ -211,7 +211,7 @@ export class TestGameRunner {
|
||||
nextBool: () => Math.random() < 0.5,
|
||||
nextRange: (min: number, max: number) => Math.random() * (max - min) + min,
|
||||
nextRangeInt: (min: number, max: number) => Math.floor(Math.random() * (max - min)) + min,
|
||||
nextFloat: () => Math.random(),
|
||||
nextFloat1: () => Math.random(),
|
||||
} as any,
|
||||
|
||||
year: this.currentDate.getFullYear(),
|
||||
|
||||
Reference in New Issue
Block a user