Fix log message in ns.bladeburner.startAction

This commit is contained in:
Adam Reineke 2022-02-12 21:26:06 -08:00 committed by GitHub
parent 9ddb1c4379
commit 41fe4e5813
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); this.startAction(player, actionId);
workerScript.log( workerScript.log(
"bladeburner.startAction", "bladeburner.startAction",
() => `Starting bladeburner action with type '${type}' and name ${name}"`, () => `Starting bladeburner action with type '${type}' and name '${name}'`,
); );
return true; return true;
} catch (e: any) { } catch (e: any) {