Merge pull request #4175 from mycroftjr/patch-2

BLADEBURNER: Make Datamancer apply to Tracking
This commit is contained in:
hydroflame 2022-10-04 11:47:46 -04:00 committed by GitHub
commit 075daf6fac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1229,7 +1229,7 @@ export class Bladeburner {
switch (actionIdent.name) {
case "Tracking":
// Increase estimate accuracy by a relatively small amount
city.improvePopulationEstimateByCount(getRandomInt(100, 1e3));
city.improvePopulationEstimateByCount(getRandomInt(100, 1e3) * this.skillMultipliers.successChanceEstimate);
break;
case "Bounty Hunter":
city.changePopulationByCount(-1, { estChange: -1, estOffset: 0 });