[GS] [1.0.12.9] "The Last Best West" not working as described

guiltysocks

Chieftain
Joined
May 3, 2014
Messages
4
The leader bonus of Wilfrid Laurier (Canada), The Last Best West, is not working as described. It reads:

"[…] In Snow, Tundra, Snow Hills, and Tundra Hills all Mines provide +2 Production, Lumber Mills provide +2 Production […]."​

However:
  • lumber mills on tundra hill tiles only provide +1 production and
  • mines on flat snow tiles only provide +1 production.
All other cases seem to work as described.

Either the description or the way the bonus works is incorrect.
 
Reposting my response from the initial report in the April 2021 Patch Notes Discussion thread:

Yep, looks like the Value column in the ModifierArguments table for "SNOW_MINES_PRODUCTION" & "TUNDRA_HILLS_LUMBER_MILLS_PRODUCTION" was inadvertently left at 1 instead of changed to 2.
 
Reposting my response from the initial report in the April 2021 Patch Notes Discussion thread:

Yep, looks like the Value column in the ModifierArguments table for "SNOW_MINES_PRODUCTION" & "TUNDRA_HILLS_LUMBER_MILLS_PRODUCTION" was inadvertently left at 1 instead of changed to 2.
Do you know if this is something that can be changed on the player's end by editing files? And if so, what file is it in?
 
Yep, pretty easy. You can find those ModifierArguments in the "..\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Expansion2\Data\Expansion2_Leaders_Major.xml" file. Just change the 1 to 2 in the Value column.
Code:
<Row>
  <ModifierId>SNOW_MINES_PRODUCTION</ModifierId>
  <Name>Amount</Name>
  <Value>1</Value>
</Row>
 
Back
Top Bottom