Fix: bot timer can't be negative or null.

This commit is contained in:
John Livingston
2025-05-21 16:51:47 +02:00
parent a5ede49402
commit 1b8531a198
2 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,8 @@ export function tplChannelConfiguration (el: ChannelConfigurationElement): Templ
},
delay: {
inputType: 'number',
default: 10
default: 10,
min: 1
}
},
commands: {