From 57f4ecd494d6ef614cdfb6afd26adf6720bd88c7 Mon Sep 17 00:00:00 2001 From: "ProjectKoi-Kalo\\Kalo" Date: Fri, 2 Jan 2026 14:28:13 +0800 Subject: [PATCH] fix --- Source/WulaFallenEmpire/EventSystem/AI/AIIntelligenceCore.cs | 4 ---- 1 file changed, 4 deletions(-) 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;