mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 17:23:53 +01:00
Change detailed mem format
This commit is contained in:
parent
4b06bdd89c
commit
b345da9dee
@ -41,7 +41,7 @@ export function mem(
|
||||
|
||||
const verboseEntries = script.ramUsageEntries?.sort((a, b) => b.cost - a.cost) ?? [];
|
||||
for (const entry of verboseEntries) {
|
||||
terminal.print(`${entry.type.padEnd(5, ' ')} | ${entry.name} (${numeralWrapper.formatRAM(entry.cost)})`);
|
||||
terminal.print(`${numeralWrapper.formatRAM(entry.cost).padStart(8)} | ${entry.name} (${entry.type})`);
|
||||
}
|
||||
} catch (e) {
|
||||
terminal.error(e + "");
|
||||
|
Loading…
Reference in New Issue
Block a user