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('')}`); } };