Merge pull request #2967 from AdamTReineke/AdamTReineke-patch-1

Fix log message in ns.bladeburner.startAction
This commit is contained in:
hydroflame 2022-03-01 10:38:50 -05:00 committed by GitHub
commit 36e0177b0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2083,7 +2083,7 @@ export class Bladeburner implements IBladeburner {
this.startAction(player, actionId);
workerScript.log(
"bladeburner.startAction",
() => `Starting bladeburner action with type '${type}' and name ${name}"`,
() => `Starting bladeburner action with type '${type}' and name '${name}'`,
);
return true;
} catch (e: any) {