This commit is contained in:
2025-12-28 00:25:10 +08:00
parent c8ee12e20c
commit 13abfef2c5
8 changed files with 140 additions and 36 deletions

View File

@@ -132,7 +132,8 @@ namespace WulaFallenEmpire.EventSystem.AI.Tools
if (!showAllNeeds && !isLow) continue;
string marker = isLow ? "!" : "";
sb.Append($"{marker}{need.LabelCap} ({need.CurLevelPercentage:P0})");
// Add explicit polarity to guide AI interpretation
sb.Append($"{marker}{need.LabelCap}: {need.CurLevelPercentage:P0} (Higher is Better)");
if (Prefs.DevMode && need.def != null)
{
sb.Append($"[{need.def.defName}]");