From 330f438a18bb42bde46b2c59c15d6324af37cd51 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 25 Dec 2025 22:54:37 +0000 Subject: [PATCH] Support [IncludeFluentReferences] on non-enumerable custom types. --- OpenRA.Mods.Common/Lint/CheckFluentReferences.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenRA.Mods.Common/Lint/CheckFluentReferences.cs b/OpenRA.Mods.Common/Lint/CheckFluentReferences.cs index 10869f25ca..a7d988b9e7 100644 --- a/OpenRA.Mods.Common/Lint/CheckFluentReferences.cs +++ b/OpenRA.Mods.Common/Lint/CheckFluentReferences.cs @@ -304,6 +304,8 @@ namespace OpenRA.Mods.Common.Lint ExtractFluentKeys(modData, v, prefix, keys); } } + else + ExtractFluentKeys(modData, fieldValue, prefix, keys); } static void ExtractChromeFluentKeys(ModData modData, Keys usedKeys)