about summary refs log tree commit diff stats
path: root/html/matt-chat/index.html
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 /html/matt-chat/index.html
parent7772f62651bd7d40d9638e55b02abf9fffd0f6ac (diff)
downloadtour-936d3a40331ec0b744e078483ad49fcee67a1308.tar.gz
*
Diffstat (limited to 'html/matt-chat/index.html')
-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 {
n&id=fe8bf967a945c7d9e6aba36e42518262d54bd348'>fe8bf967 ^
5fe060d5 ^
4bb57a55 ^

5fe060d5 ^


c842d90b ^





e5c11a51 ^






















c842d90b ^


e5c11a51 ^
c842d90b ^
b301e0c0 ^
204dae92 ^
4a48bedc ^
204dae92 ^
805d58c6 ^


5fe060d5 ^
204dae92 ^




b301e0c0 ^
204dae92 ^
4a48bedc ^
204dae92 ^


805d58c6 ^



204dae92 ^
4a48bedc ^
204dae92 ^


805d58c6 ^




204dae92 ^
b301e0c0 ^
204dae92 ^



cdf28227 ^




204dae92 ^
805d58c6 ^







204dae92 ^


bd58d18a ^
b301e0c0 ^
bd58d18a ^
4a48bedc ^
b301e0c0 ^
bd58d18a ^





b301e0c0 ^
bd58d18a ^
cdf28227 ^

bd58d18a ^
805d58c6 ^
bd58d18a ^

c842d90b ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139