Sid Meier's Civilization VI

Sid Meier's Civilization VI

More Lenses
infixo 20 Sep, 2019 @ 4:07am
Toggle Yields fix
In the file <mod>\Base\Assets\UI\MinimapPanel.lua you need to change lines 289 and 291.

From
if UserConfiguration.ShowMapYield() then
LuaEvents.MinimapPanel_ShowYieldIcons();
else
LuaEvents.MinimapPanel_HideYieldIcons();
end

To
if UserConfiguration.ShowMapYield() then
LuaEvents.PlotInfo_ShowYieldIcons();
else
LuaEvents.PlotInfo_HideYieldIcons();
end

Firaxis changed Lua events for yields toggling from MinimapPanel_XXX to PlotInfo_XXX.