fix: Define missing ANIMAL_HUNGER_MAX constant in ai.js

This commit is contained in:
Kacper Kostka (aider) 2025-04-02 11:48:34 +02:00
parent 7285fc534b
commit 472a210cd7

8
ai.js
View File

@ -1,3 +1,11 @@
/**********************************************************************
* CONSTANTS
**********************************************************************/
const ANIMAL_HUNGER_MAX = 100;
const RABBIT_HUNGER_INCREMENT = 0.05;
const RABBIT_REPRO_CHANCE = 0.005;
const RABBIT_REPRO_COOLDOWN = 1000;
/**********************************************************************
* CITIZEN AI
**********************************************************************/