diff --git a/markdown/bitburner.hackingformulas.md b/markdown/bitburner.hackingformulas.md index 8848ee081..ee45243c8 100644 --- a/markdown/bitburner.hackingformulas.md +++ b/markdown/bitburner.hackingformulas.md @@ -134,7 +134,7 @@ Calculate hack time. -Calculate the security decrease from a weaken operation. Unlike other hacking formulas, weaken effect depends only on thread count and core count, not on server or player properties. The core bonus formula is `1 + (cores - 1) / 16}`. +Calculate the security decrease from a weaken operation. Unlike other hacking formulas, weaken effect depends only on thread count and core count, not on server or player properties. The core bonus formula is `1 + (cores - 1) / 16`. diff --git a/markdown/bitburner.hackingformulas.weakeneffect.md b/markdown/bitburner.hackingformulas.weakeneffect.md index 992c69f5d..efa12d167 100644 --- a/markdown/bitburner.hackingformulas.weakeneffect.md +++ b/markdown/bitburner.hackingformulas.weakeneffect.md @@ -4,7 +4,7 @@ ## HackingFormulas.weakenEffect() method -Calculate the security decrease from a weaken operation. Unlike other hacking formulas, weaken effect depends only on thread count and core count, not on server or player properties. The core bonus formula is `1 + (cores - 1) / 16}`. +Calculate the security decrease from a weaken operation. Unlike other hacking formulas, weaken effect depends only on thread count and core count, not on server or player properties. The core bonus formula is `1 + (cores - 1) / 16`. **Signature:** diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 25fc865a1..c9c4eaa39 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -6296,7 +6296,7 @@ interface HackingFormulas { * Calculate the security decrease from a weaken operation. * Unlike other hacking formulas, weaken effect depends only on thread count and * core count, not on server or player properties. The core bonus formula is - * `1 + (cores - 1) / 16}`. + * `1 + (cores - 1) / 16`. * @param threads - Number of threads running weaken. * @param cores - Number of cores on the host server. Default 1. * @returns The security decrease amount.