From 2ad10115b889aa2f2227fe0e5a4ca88d83468ea9 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Fri, 15 Aug 2025 14:29:05 -0700 Subject: [PATCH] feat: bump to 10 hourly throws --- src/modules/getCachedCount.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/getCachedCount.ts b/src/modules/getCachedCount.ts index 0dfa29a..5e5ad33 100644 --- a/src/modules/getCachedCount.ts +++ b/src/modules/getCachedCount.ts @@ -13,5 +13,5 @@ import type { Pavelle } from "../interfaces/pavelle.js"; * @returns The number of throws remaining. */ export const getCachedCount = (pavelle: Pavelle, id: string): number => { - return pavelle.throwCache.get(id) ?? 3; + return pavelle.throwCache.get(id) ?? 10; };