From 2e8efab2aae3677dc5be0597f2b953bb0cf808b7 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 1 Apr 2026 11:52:08 -0500 Subject: [PATCH] Fix unused EGG_DECAY variable eslint errors by prefixing with underscore --- src/blobbi/core/lib/blobbi-decay.ts | 2 +- src/lib/blobbi-decay.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blobbi/core/lib/blobbi-decay.ts b/src/blobbi/core/lib/blobbi-decay.ts index 958637ff..25f22a16 100644 --- a/src/blobbi/core/lib/blobbi-decay.ts +++ b/src/blobbi/core/lib/blobbi-decay.ts @@ -61,7 +61,7 @@ export interface DecayInput { * - health has conditional decay based on hygiene * - happiness depends on health and hygiene state */ -const EGG_DECAY = { +const _EGG_DECAY = { hygiene: -8.0, // Base hygiene decay health: { base: -1.0, // Base health decay diff --git a/src/lib/blobbi-decay.ts b/src/lib/blobbi-decay.ts index 00a8f28c..47c87a9b 100644 --- a/src/lib/blobbi-decay.ts +++ b/src/lib/blobbi-decay.ts @@ -61,7 +61,7 @@ export interface DecayInput { * - health has conditional decay based on hygiene * - happiness depends on health and hygiene state */ -const EGG_DECAY = { +const _EGG_DECAY = { hygiene: -8.0, // Base hygiene decay health: { base: -1.0, // Base health decay