mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-12 10:00:36 +01:00
Add guard to /times command arguments hint
This commit is contained in:
parent
ddc3848b26
commit
32a04422e7
@ -1358,7 +1358,11 @@ export function registerVariableCommands() {
|
|||||||
name: 'times',
|
name: 'times',
|
||||||
callback: timesCallback,
|
callback: timesCallback,
|
||||||
returns: 'result of the last executed command',
|
returns: 'result of the last executed command',
|
||||||
namedArgumentList: [],
|
namedArgumentList: [
|
||||||
|
new SlashCommandNamedArgument(
|
||||||
|
'guard', 'disable loop iteration limit', [ARGUMENT_TYPE.STRING], false, false, null, commonEnumProviders.boolean('onOff')(),
|
||||||
|
),
|
||||||
|
],
|
||||||
unnamedArgumentList: [
|
unnamedArgumentList: [
|
||||||
new SlashCommandArgument(
|
new SlashCommandArgument(
|
||||||
'repeats',
|
'repeats',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user