mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 00:32:51 +02:00
fix sleeve memory bug
This commit is contained in:
@@ -8,7 +8,5 @@ export function getTimestamp(): string {
|
||||
const formattedHours: string = `0${d.getHours()}`.slice(stringWidth);
|
||||
const formattedMinutes: string = `0${d.getMinutes()}`.slice(stringWidth);
|
||||
|
||||
return `${
|
||||
d.getMonth() + 1
|
||||
}/${d.getDate()} ${formattedHours}:${formattedMinutes}`;
|
||||
return `${d.getMonth() + 1}/${d.getDate()} ${formattedHours}:${formattedMinutes}`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user