const Command = require('../../structures/Command'); module.exports = class TimeCommand extends Command { constructor(client) { super(client, { name: 'time', aliases: ['time-zone'], group: 'events', memberName: 'time', description: 'Responds with the current time in a particular location.', details: '**Zones**: ', args: [ { key: 'timeZone', label: 'time zone', prompt: 'Which time zone do you want to get the time of?', type: 'string', parse: timeZone => timeZone.replace(/ /g, '_').toUpperCase() } ] }); } run(msg, { timeZone }) { let neopia = false; if (timeZone === 'NEOPIA/STANDARD' || timeZone === 'NEOPIA') { timeZone = 'AMERICA/VANCOUVER'; neopia = true; } try { const time = new Date().toLocaleTimeString('en-US', { timeZone }); return msg.say(`The current time in ${neopia ? 'NEOPIA' : timeZone} is ${time}.`); } catch (err) { return msg.reply('Invalid time zone. Refer to .'); } } };