From 341ad295041422c5af6c50f9be1bbbeee5111675 Mon Sep 17 00:00:00 2001 From: rraumberger Date: Sat, 26 Oct 2024 13:30:57 +0200 Subject: [PATCH] adjust slots --- helpers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers.js b/helpers.js index fac4c7ed..6b25445d 100644 --- a/helpers.js +++ b/helpers.js @@ -805,11 +805,11 @@ export function unEscapeArrayArgs(args) { /** * Custom tail function which also applies default resizes and tail window placement. - * This algorithm is not perfect but for the most apart should not generate overlaps of the window's title bar. + * This algorithm is not perfect but for the most part should not generate overlaps of the window's title bar. * @param {NS} ns The nestcript instance passed to your script's main entry point */ export function tail(ns) { ns.tail(); ns.resizeTail(ns.ui.windowSize()[0] * 0.75, ns.ui.windowSize()[1] * 0.25, ns.pid); - ns.moveTail(250, (ns.pid % 10) * 35, ns.pid); + ns.moveTail(250, (ns.pid % 13) * 35, ns.pid); } \ No newline at end of file