From 8e27beb50e5e5587af5be6c0abef48a2f5a88b1e Mon Sep 17 00:00:00 2001 From: Cesium Date: Tue, 11 Nov 2025 17:25:02 -0500 Subject: [PATCH] do we really need that much precision --- commands/stupid/howiskzn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/stupid/howiskzn.js b/commands/stupid/howiskzn.js index 21f40d4..15acd10 100644 --- a/commands/stupid/howiskzn.js +++ b/commands/stupid/howiskzn.js @@ -115,7 +115,7 @@ module.exports = { const factionFemalePercent = (factionFemales / faction.capacity) * 100; message += `\nbtw lol his company has ${companyFemales}/${company.employees_capacity} female employees and ${factionFemales}/${faction.capacity} female faction members\n`; - message += `thats ${companyFemalePercent.toFixed(2)}% and ${factionFemalePercent.toFixed(2)}% respectively, and last i checked, torn has a 13.43% female population`; + message += `thats ${companyFemalePercent.toFixed(0)}% and ${factionFemalePercent.toFixed(0)}% respectively, and last i checked, torn has a 13% female population`; interaction.reply({ content: message, embeds: [jobEmbed, facEmbed] }); }, }; \ No newline at end of file