increase action timers

This commit is contained in:
zyl 2024-06-25 01:00:15 -07:00
parent ddc1e933a6
commit 0a80fff2c1
No known key found for this signature in database

View file

@ -36,11 +36,11 @@
const CLEAN_HAPPINESS = 1; const CLEAN_HAPPINESS = 1;
/** the minimum amount of time between feedings */ /** the minimum amount of time between feedings */
const FEED_TIMER = 5000; const FEED_TIMER = 1000 * 60 * 60;
/** the minimum amount of time between pets */ /** the minimum amount of time between pets */
const PET_TIMER = 2000; const PET_TIMER = 60000;
/** the minimum amount of time between cleans */ /** the minimum amount of time between cleans */
const CLEAN_TIMER = 5000; const CLEAN_TIMER = 1000 * 60 * 60;
const PET_SAVE_KEY = "pet-game"; const PET_SAVE_KEY = "pet-game";