From 49d301af426d0f7e28b57ed992b20437b440594a Mon Sep 17 00:00:00 2001 From: DroidDevelopment Date: Wed, 13 Nov 2024 22:38:51 -0500 Subject: [PATCH] Use single quotes. --- src/frost/data/constants.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/frost/data/constants.rb b/src/frost/data/constants.rb index 7b56b47..17dfa32 100644 --- a/src/frost/data/constants.rb +++ b/src/frost/data/constants.rb @@ -135,14 +135,14 @@ # Emojis for phases of the moon used by the moon commands. MOON = { - "New Moon" => 🌑, - "Waxing Crescent" => 🌒, - "First Quarter" => 🌓, - "Waxing Gibbous" => 🌔, - "Full Moon" => 🌕, - "Waning Gibbous" => 🌖, - "Last Quarter" => 🌗, - "Waning Crescent" => 🌘 + 'New Moon' => 🌑, + 'Waxing Crescent' => 🌒, + 'First Quarter' => 🌓, + 'Waxing Gibbous' => 🌔, + 'Full Moon' => 🌕, + 'Waning Gibbous' => 🌖, + 'Last Quarter' => 🌗, + 'Waning Crescent' => 🌘 }.freeze # UI components including color values; primarily used by the bot when sending embeds.