diff --git a/Source/WulaFallenEmpire/EventSystem/AI/AIIntelligenceCore.cs b/Source/WulaFallenEmpire/EventSystem/AI/AIIntelligenceCore.cs index b703f7a6..317dfa3d 100644 --- a/Source/WulaFallenEmpire/EventSystem/AI/AIIntelligenceCore.cs +++ b/Source/WulaFallenEmpire/EventSystem/AI/AIIntelligenceCore.cs @@ -9840,8 +9840,6 @@ You are 'The Legion', a super AI of the Wula Empire. Your personality is authori int maxTools = MaxToolsPerPhase(phase); - var historyToolResults = new List<(string id, string content)>(); - var callsToExecute = toolCalls.Count > maxTools ? toolCalls.GetRange(0, maxTools) : toolCalls; @@ -10765,8 +10763,6 @@ private async Task ExecuteJsonToolsForPhase(string json, R int maxTools = MaxToolsPerPhase(phase); - var historyToolResults = new List<(string id, string content)>(); - int executed = 0;