Better type for parameter,all callers already send it this type

This commit is contained in:
VariableVince
2026-02-19 20:02:12 +01:00
parent 0f1ac5efb6
commit 4a51e977ac
+1 -1
View File
@@ -291,7 +291,7 @@ export function withinInt(num: bigint, min: bigint, max: bigint): bigint {
export function createRandomName(
name: string,
playerType: string,
playerType: PlayerType,
): string | null {
let randomName: string | null = null;
if (playerType === PlayerType.Human) {