Make Datamancer apply to Tracking

Makes the Datamancer skill for Bladeburner apply to the Population Estimate change of the Tracking contract. If this was not desired, then the description of Datamancer needs to be made more accurate :D
This commit is contained in:
MycroftJr 2022-09-27 22:08:14 -07:00 committed by GitHub
parent 444c74ccd9
commit c7d85e1d42
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 });