diff --git a/src/utils.ts b/src/utils.ts index d3f5c7b..6a5ea75 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -60,7 +60,7 @@ export function shuffle(array: T[]): T[] { function initDailyPRNG(): () => number { // Prefix the seed when in dev to avoid spoiling myself while working on it const prefix = import.meta.env.DEV ? 'dev-' : '' - const hashed = hashStr(prefix + GAME_STARTING_DATE) + const hashed = hashStr(prefix + getCurrentDate().toISOString().slice(0, 10)) return mulberry32(hashed) }