feat: bump to 10 hourly throws
Node.js CI / Lint and Test (push) Successful in 41s

This commit is contained in:
2025-08-15 14:29:05 -07:00
parent 2543341d3c
commit 2ad10115b8
+1 -1
View File
@@ -13,5 +13,5 @@ import type { Pavelle } from "../interfaces/pavelle.js";
* @returns The number of throws remaining. * @returns The number of throws remaining.
*/ */
export const getCachedCount = (pavelle: Pavelle, id: string): number => { export const getCachedCount = (pavelle: Pavelle, id: string): number => {
return pavelle.throwCache.get(id) ?? 3; return pavelle.throwCache.get(id) ?? 10;
}; };