From c3f902ebcf4823f8311ec87dff2b56e2ff162272 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 19 Jan 2026 11:12:59 +0000 Subject: [PATCH] Fix sequence lint checks for map-defined actors. --- OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs b/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs index f8a7ef9329..5175ed89dc 100644 --- a/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs +++ b/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs @@ -159,7 +159,7 @@ namespace OpenRA.Mods.Common.UtilityCommands { CheckRules(modData, map.Rules); if (map.SequenceDefinitions != null) - CheckSequences(modData, modData.DefaultRules, map.Sequences); + CheckSequences(modData, map.Rules, map.Sequences); } // Run all map-level checks here.