goats eat kudzu again (#40220)

* kudzu edible, food htn starts at peckish, no nutrition needed for npc to eat

* fix kudzu tags

* remove old stomach 2 from ruminant body

* make kudzu nutrition non-zero

* skip targeting food if nutrition is zero

* move edible from baseKudzu
This commit is contained in:
qwerltaz
2025-10-21 11:46:09 +02:00
committed by GitHub
parent 7bef430b21
commit 20e0c41995
6 changed files with 10 additions and 13 deletions

View File

@@ -185,7 +185,7 @@ public sealed class NPCUtilitySystem : EntitySystem
return 0f;
var nutrition = _ingestion.TotalNutrition(targetUid, owner);
if (nutrition <= 1.0f)
if (nutrition == 0.0f)
return 0f;
return 1f;