put args type to number

This commit is contained in:
Loïc Bersier 2019-06-18 01:14:36 +02:00
parent bd8effb93b
commit 7d15dd2983

View file

@ -13,12 +13,12 @@ class borgarCommand extends Command {
args: [ args: [
{ {
id: 'ingredientNumber', id: 'ingredientNumber',
type: 'int', type: 'number',
default: 4 default: 4
}, },
{ {
id: 'time', id: 'time',
type: 'int', type: 'number',
default: 10 default: 10
} }
], ],