Fixed info using `heapTotal` for both values.

This commit is contained in:
Keanu Timmermans 2021-01-29 14:34:46 +01:00
parent 74d36e36b2
commit a21ed7a97f
Signed by: keanucode
GPG Key ID: A7431C0D513CA93B
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ export default new Command({
`\u3000 • Speed: ${core.speed}MHz`,
`** Memory:**`,
`\u3000 • Total: ${formatBytes(process.memoryUsage().heapTotal)}`,
`\u3000 • Used: ${formatBytes(process.memoryUsage().heapTotal)}`
`\u3000 • Used: ${formatBytes(process.memoryUsage().heapUsed)}`
])
.setTimestamp();
$.channel.send(embed);