From 4d0a5a43c0cf2d16731fbd8dad5190912039871c Mon Sep 17 00:00:00 2001 From: zeddrak <57454318+zeddrak@users.noreply.github.com> Date: Wed, 12 Jan 2022 05:58:12 -0800 Subject: [PATCH] Made hack log msg consitent with grow and weaken Changed hack log message from "executing target" to "executing on target". This makes it consistent with grow and weaken; and reads better as well. --- src/NetscriptFunctions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NetscriptFunctions.ts b/src/NetscriptFunctions.ts index ea97083a9..dd7c3c070 100644 --- a/src/NetscriptFunctions.ts +++ b/src/NetscriptFunctions.ts @@ -335,7 +335,7 @@ export function NetscriptFunctions(workerScript: WorkerScript): NS { workerScript.log( "hack", () => - `Executing ${hostname} in ${convertTimeMsToTimeElapsedString( + `Executing on '${server.hostname}' in ${convertTimeMsToTimeElapsedString( hackingTime * 1000, true, )} (t=${numeralWrapper.formatThreads(threads)})`,