feat: 体力最大值设置为 5

This commit is contained in:
richarjiang
2026-06-02 18:49:59 +08:00
parent 23ec776fc5
commit 0b9c3f6cde

View File

@@ -1,5 +1,5 @@
/** Maximum stamina a user can have */
export const MAX_STAMINA = 50;
export const MAX_STAMINA = 5;
/** Stamina recovery interval: 1 point every 10 minutes */
export const RECOVER_INTERVAL_MS = 10 * 60 * 1000;