Commit 2731181 1 parent 2671e46 commit 2731181 Copy full SHA for 2731181
File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,15 @@ export default {
29
29
interaction . guildId ? `G ${ interaction . guildId } | ` : ''
30
30
} U ${ interaction . user . id } ] Processing command ${
31
31
interaction . commandName
32
+ } ${
33
+ interaction . options . data . length > 0
34
+ ? ` ${ interaction . options . data
35
+ . map (
36
+ ( option ) : string =>
37
+ `${ option . name } :${ option . value } ` ,
38
+ )
39
+ . join ( ' ' ) } `
40
+ : ''
32
41
} `,
33
42
label : 'Warden' ,
34
43
} ) ;
@@ -164,6 +173,15 @@ export default {
164
173
interaction . guildId ? `G ${ interaction . guildId } | ` : ''
165
174
} U ${ interaction . user . id } ] Executing command ${
166
175
interaction . commandName
176
+ } ${
177
+ interaction . options . data . length > 0
178
+ ? ` ${ interaction . options . data
179
+ . map (
180
+ ( option ) : string =>
181
+ `${ option . name } :${ option . value } ` ,
182
+ )
183
+ . join ( ' ' ) } `
184
+ : ''
167
185
} `,
168
186
label : 'Warden' ,
169
187
} ) ;
You can’t perform that action at this time.
0 commit comments