From 2afbca10eccef823c8e9edf3d424c4cfd4785b93 Mon Sep 17 00:00:00 2001
From: Supositware <sup@libtar.de>
Date: Thu, 4 Jul 2024 19:16:00 +0200
Subject: [PATCH] Show architechture

---
 commands/utility/stats.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/utility/stats.js b/commands/utility/stats.js
index bd7b567f..58f9d035 100644
--- a/commands/utility/stats.js
+++ b/commands/utility/stats.js
@@ -42,7 +42,7 @@ export default {
 				{ name: 'Channels', value: client.channels.cache.size.toString(), inline: true },
 				{ name: 'Users', value: client.users.cache.size.toString(), inline: true },
 				{ name: 'Ram usage', value: `${bytesToSize(process.memoryUsage().heapUsed)}/${bytesToSize(os.totalmem)}`, inline: true },
-				{ name: 'CPU', value: `${os.cpus()[0].model} (${os.cpus().length} core)`, inline: true },
+				{ name: 'CPU', value: `${os.cpus()[0].model} (${os.cpus().length} core) (${os.arch()})`, inline: true },
 				{ name: 'OS', value: `${os.platform()} ${os.release()}`, inline: true },
 				{ name: 'Nodejs version', value: process.version, inline: true },
 				{ name: 'Discord.js version', value: version, inline: true },