From fb042c17e751951b13ff9d823222dbeddf043706 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 30 May 2025 22:00:33 -0400 Subject: [PATCH] Fix --- commands/events/time.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/events/time.js b/commands/events/time.js index 3e3b254f..e6ba9e36 100644 --- a/commands/events/time.js +++ b/commands/events/time.js @@ -36,7 +36,7 @@ module.exports = class TimeCommand extends Command { run(msg, { timeZone }) { const time = moment().tz(timeZone).format('h:mm A'); const location = timeZone.split('/'); - const word = location[0] === 'lily' ? 'for' : 'in'; + const word = location[0] === 'Lily' ? 'for' : 'in'; const main = firstUpperCase(location[0], /[_ ]/); const sub = location[1] ? firstUpperCase(location[1], /[_ ]/) : null; const subMain = location[2] ? firstUpperCase(location[2], /[_ ]/) : null;