We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am currently updating the Steam version of the mod.
I saw you made some changes in your latest release so I just worked with that one. Seems as though they changed how prosperity works.
To fix your version to be compatible with the latest version (1.2.9):
Line 186: var prosperityAdjustment = settlement.Prosperity / PROSPEROUS_TOWN;
Needs to be:
var prosperityAdjustment = settlement.Town.Prosperity / PROSPEROUS_TOWN;
Thank you for letting me upload this to steam!
https://steamcommunity.com/sharedfiles/filedetails/?id=2875187162
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am currently updating the Steam version of the mod.
I saw you made some changes in your latest release so I just worked with that one. Seems as though they changed how prosperity works.
To fix your version to be compatible with the latest version (1.2.9):
Line 186:
var prosperityAdjustment = settlement.Prosperity / PROSPEROUS_TOWN;
Needs to be:
var prosperityAdjustment = settlement.Town.Prosperity / PROSPEROUS_TOWN;
Thank you for letting me upload this to steam!
https://steamcommunity.com/sharedfiles/filedetails/?id=2875187162
The text was updated successfully, but these errors were encountered: