From df12a04489de3956bd2cc9601d641ecf5ffa765d Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 15 Aug 2017 22:22:53 +0000 Subject: [PATCH] Caps first letter --- commands/text-edit/organization-xiii-name.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/text-edit/organization-xiii-name.js b/commands/text-edit/organization-xiii-name.js index 5e9a58ab..fa94cf21 100644 --- a/commands/text-edit/organization-xiii-name.js +++ b/commands/text-edit/organization-xiii-name.js @@ -23,7 +23,8 @@ module.exports = class OrganizationXIIINameCommand extends Command { run(msg, args) { const { text } = args; text.push('x'); - const converted = shuffle(text).join(''); - return msg.say(`\u180E${converted}`); + const converted = shuffle(text); + converted[0] = converted[0].toUpperCase(); + return msg.say(`\u180E${converted.join('')}`); } };