about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2025-01-05 09:40:47 -0500
committerelioat <elioat@tilde.institute>2025-01-05 09:40:47 -0500
commit936d3a40331ec0b744e078483ad49fcee67a1308 (patch)
tree0cbe25ccf11b0ccca63d618132f3d713304a2ffb
parent7772f62651bd7d40d9638e55b02abf9fffd0f6ac (diff)
downloadtour-936d3a40331ec0b744e078483ad49fcee67a1308.tar.gz
*
-rw-r--r--html/matt-chat/index.html6
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 {