-
Notifications
You must be signed in to change notification settings - Fork 426
New issue
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
Fix Cataclysm scenario iridium mine production to reflect tooltip value #1139
Fix Cataclysm scenario iridium mine production to reflect tooltip value #1139
Conversation
Are you sure that this is an issue? Looking at the code, it seems like the coal mine correctly displays in the tooltip how much coal it gives. |
Hey, great question! Could you clarify what you mean by "the coal mine correctly displays in the tooltip how much coal it gives"? From my understanding, each iridium mine is only giving 0.11 coal production instead of the 0.55 on the tooltip. In my attached screenshot (and I apologize for this being a bit misleading), I have 5 iridium mines active, but I'm only producing 0.55 coal base, meaning I'm only getting 0.11 / iridium mine. I think there could be two ways to approach this:
In this case I'm not confident on which one would be the better balance decision (and am happy to adjust to whatever is most appropriate) - I'm more so trying to point out that the tooltip and the actual production are not aligned. Happy to provide more evidence on the difference in production / tooltip if desired. I should also note:
In this case base coal mine production (i.e. the one on the home planet) would not be affected by this change, since that's scaled here instead of at the line change that I've proposed. But maybe this is just a difference in our terminology. |
Aha, I understand it now. I did not catch the fact that you had 5 iridium mines. Looking at the Production function, makes it seem like iridium mines are expected to produce 0.55 coal/s each, so that makes this a more sensible change to me. |
Ive also encountered this issue so Im bumping it so it hopefully gets merged |
The coal miner "impact" rating was not applied to iridium mines in Cataclysm until the patch to implement Psychic Powers for the Eldritch genus. See commit: d37ac5f I think that the fix made in this pull request is correct and should be applied. |
+1 bump good fix |
global.civic.coal_miner.impact
is always 0.2 and is affecting iridium mine production of coal even though there are no coal miners in the scenario.Resolves #1138