Update all general actions to have infinity count

ns.bladeburner.getActionCountRemaining("general", "Diplomacy") currently returns -1. I think it'd be more intuitive if all the general actions returned Infinity, instead of just two of them
This commit is contained in:
brubsby 2021-08-27 16:13:22 -05:00 committed by GitHub
parent bcb0606900
commit 02a21cf2d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1845,8 +1845,11 @@ export class Bladeburner implements IBladeburner {
return 1;
}
case ActionTypes["Training"]:
case ActionTypes["Recruitment"]:
case ActionTypes["Field Analysis"]:
case ActionTypes["FieldAnalysis"]:
case ActionTypes["Diplomacy"]:
case ActionTypes["Hyperbolic Regeneration Chamber"]:
return Infinity;
default:
workerScript.log("bladeburner.getActionCountRemaining", errorLogText);