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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user