diff --git a/Source/Game/AI/SmartScripts/SmartAIManager.cs b/Source/Game/AI/SmartScripts/SmartAIManager.cs index 1c920dbce..a65e5a2c0 100644 --- a/Source/Game/AI/SmartScripts/SmartAIManager.cs +++ b/Source/Game/AI/SmartScripts/SmartAIManager.cs @@ -2109,6 +2109,17 @@ namespace Game.AI return false; } + // Additional check for deprecated + switch (e.GetActionType()) + { + // Deprecated + case SmartActions.SendGoCustomAnim: + Log.outWarn(LogFilter.Sql, $"SmartAIMgr: Deprecated action_type: {e}, it might be removed in the future, loaded for now."); + break; + default: + break; + } + if (!CheckUnusedActionParams(e)) return false;