mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-01 11:56:48 +01:00
Specify that flushvar supports closures
This commit is contained in:
parent
946994af22
commit
fa9ae4c979
@ -1400,8 +1400,8 @@ export function registerVariableCommands() {
|
|||||||
unnamedArgumentList: [
|
unnamedArgumentList: [
|
||||||
SlashCommandNamedArgument.fromProps({
|
SlashCommandNamedArgument.fromProps({
|
||||||
name: 'key',
|
name: 'key',
|
||||||
description: 'variable name',
|
description: 'variable name or closure that returns a variable name',
|
||||||
typeList: [ARGUMENT_TYPE.VARIABLE_NAME],
|
typeList: [ARGUMENT_TYPE.VARIABLE_NAME, ARGUMENT_TYPE.CLOSURE],
|
||||||
enumProvider: commonEnumProviders.variables('local'),
|
enumProvider: commonEnumProviders.variables('local'),
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
@ -1426,8 +1426,8 @@ export function registerVariableCommands() {
|
|||||||
unnamedArgumentList: [
|
unnamedArgumentList: [
|
||||||
SlashCommandNamedArgument.fromProps({
|
SlashCommandNamedArgument.fromProps({
|
||||||
name: 'key',
|
name: 'key',
|
||||||
description: 'variable name',
|
description: 'variable name or closure that returns a variable name',
|
||||||
typeList: [ARGUMENT_TYPE.VARIABLE_NAME],
|
typeList: [ARGUMENT_TYPE.VARIABLE_NAME, ARGUMENT_TYPE.CLOSURE],
|
||||||
enumProvider: commonEnumProviders.variables('global'),
|
enumProvider: commonEnumProviders.variables('global'),
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user