mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 15:43:49 +01:00
Add save file warning for detailed ram usage
This commit is contained in:
parent
4363aa43fe
commit
8b2ad883e4
@ -43,6 +43,11 @@ export function mem(
|
||||
for (const entry of verboseEntries) {
|
||||
terminal.print(`${numeralWrapper.formatRAM(entry.cost * numThreads).padStart(8)} | ${entry.name} (${entry.type})`);
|
||||
}
|
||||
|
||||
if (ramUsage > 0 && verboseEntries.length === 0) {
|
||||
// Let's warn the user that he might need to save his script again to generate the detailed entries
|
||||
terminal.warn('You might have to open & save this script to see the detailed RAM usage information.');
|
||||
}
|
||||
} catch (e) {
|
||||
terminal.error(e + "");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user