File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ export const farmingCommand = defineCommand({
5151 type : 'Integer' ,
5252 name : 'quantity' ,
5353 description : 'The quantity you want to plant.' ,
54- required : false
54+ required : false ,
55+ min_value : 1
5556 } ,
5657 {
5758 type : 'Boolean' ,
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ export const raidCommand = defineCommand({
3838 type : 'Integer' ,
3939 name : 'max_team_size' ,
4040 description : 'Choose a max size for your team.' ,
41- required : false
41+ required : false ,
42+ min_value : 1
4243 } ,
4344 {
4445 type : 'Integer' ,
@@ -88,7 +89,8 @@ export const raidCommand = defineCommand({
8889 type : 'Integer' ,
8990 name : 'max_team_size' ,
9091 description : 'Choose a max size for your team.' ,
91- required : false
92+ required : false ,
93+ min_value : 1
9294 } ,
9395 {
9496 type : 'Integer' ,
Original file line number Diff line number Diff line change @@ -174,7 +174,8 @@ export const slayerCommand = defineCommand({
174174 type : 'Integer' ,
175175 name : 'quantity' ,
176176 description : 'The quantity to purchase, if applicable.' ,
177- required : false
177+ required : false ,
178+ min_value : 1
178179 }
179180 ]
180181 } ,
You can’t perform that action at this time.
0 commit comments