diff options
Diffstat (limited to 'html')
-rw-r--r-- | html/matt-chat/index.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/html/matt-chat/index.html b/html/matt-chat/index.html index eac9a05..f8c44e6 100644 --- a/html/matt-chat/index.html +++ b/html/matt-chat/index.html @@ -747,7 +747,7 @@ 'molly-millions': 'Molly Millions\' manicure', 'cloud': 'It took a lot of self control not to add sound effects', 'classic': 'This is not a fish', - 'engage': 'Boldly going' + 'lcars': 'Boldly going' }; // Function to handle errors @@ -912,10 +912,8 @@ if (userMessage.toLowerCase().startsWith('/theme')) { const requestedTheme = userMessage.toLowerCase().split(' ')[1]; if (!requestedTheme) { - // No theme specified, show available themes + // If no theme is specified, lets show all available themes addMessage(`Available themes: ${Object.keys(AVAILABLE_THEMES).join(', ')}`, "bot"); - } else if (requestedTheme === 'engage') { - switchTheme('lcars'); } else if (AVAILABLE_THEMES[requestedTheme]) { switchTheme(requestedTheme); } else { |