Fractal Softworks Forum

Starsector => Bug Reports & Support => Topic started by: Wyvern on April 03, 2021, 12:07:05 PM

Title: "Improved" tech mining is *.25 effective, rather than *1.25
Post by: Wyvern on April 03, 2021, 12:07:05 PM
Code
	protected void applyImproveModifiers() {
if (isImproved()) {
market.getStats().getDynamic().getStat(Stats.TECH_MINING_MULT).modifyMult(getModId(1), IMPROVE_FINDS_BONUS);
} else {
market.getStats().getDynamic().getStat(Stats.TECH_MINING_MULT).unmodifyMult(getModId(1));
}
}
And the bonus is 0.25, so when we multiply by that...
Title: Re: "Improved" tech mining is *.25 effective, rather than *1.25
Post by: Alex on April 03, 2021, 12:10:45 PM
... well.

Thank you, fixed!