Remove currency from transfer message

This commit is contained in:
2026-03-28 14:21:00 +01:00
parent 728b99b1f9
commit 6f1e8f8087

View File

@@ -68,7 +68,7 @@ module.exports = {
runTransfer(); runTransfer();
const targetName = authorId === "222457277708369928" ? "Miffy" : "Minz"; const targetName = authorId === "222457277708369928" ? "Miffy" : "Minz";
await message.reply(`Transferred ${amount.toFixed(2)} ${currency} to ${targetName}.`); await message.reply(`Transferred ${amount.toFixed(2)} to ${targetName}.`);
return; return;
} }