From 0a80fff2c100d7d008d4bfe3454c067b3eb963ec Mon Sep 17 00:00:00 2001 From: zyl Date: Tue, 25 Jun 2024 01:00:15 -0700 Subject: [PATCH] increase action timers --- site/root/js/pet.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/root/js/pet.js b/site/root/js/pet.js index 429004a..66e76b3 100644 --- a/site/root/js/pet.js +++ b/site/root/js/pet.js @@ -36,11 +36,11 @@ const CLEAN_HAPPINESS = 1; /** the minimum amount of time between feedings */ - const FEED_TIMER = 5000; + const FEED_TIMER = 1000 * 60 * 60; /** the minimum amount of time between pets */ - const PET_TIMER = 2000; + const PET_TIMER = 60000; /** the minimum amount of time between cleans */ - const CLEAN_TIMER = 5000; + const CLEAN_TIMER = 1000 * 60 * 60; const PET_SAVE_KEY = "pet-game";