Skip to content

Commit

Permalink
🔢 Edit the minimum number
Browse files Browse the repository at this point in the history
  • Loading branch information
Maseshi committed May 23, 2024
1 parent 707acef commit 1a827ac
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions source/commands/messages/purge.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
th: 'จำนวนข้อความที่จะลบ',
})
.setRequired(true)
.setMinValue(0)
.setMinValue(1)
.setMaxValue(100)
)
.addChannelOption((option) =>
Expand Down Expand Up @@ -67,7 +67,7 @@ module.exports = {
th: 'จำนวนข้อความที่จะลบ',
})
.setRequired(true)
.setMinValue(0)
.setMinValue(1)
.setMaxValue(100)
)
.addChannelOption((option) =>
Expand Down Expand Up @@ -95,7 +95,7 @@ module.exports = {
th: 'จำนวนข้อความที่จะลบ',
})
.setRequired(true)
.setMinValue(0)
.setMinValue(1)
.setMaxValue(100)
)
.addChannelOption((option) =>
Expand Down Expand Up @@ -123,7 +123,7 @@ module.exports = {
th: 'จำนวนข้อความที่จะลบ',
})
.setRequired(true)
.setMinValue(0)
.setMinValue(1)
.setMaxValue(100)
)
.addChannelOption((option) =>
Expand Down Expand Up @@ -151,7 +151,7 @@ module.exports = {
th: 'จำนวนข้อความที่จะลบ',
})
.setRequired(true)
.setMinValue(0)
.setMinValue(1)
.setMaxValue(100)
)
.addChannelOption((option) =>
Expand Down Expand Up @@ -188,7 +188,7 @@ module.exports = {
th: 'จำนวนข้อความที่จะลบ',
})
.setRequired(true)
.setMinValue(0)
.setMinValue(1)
.setMaxValue(100)
)
.addChannelOption((option) =>
Expand Down Expand Up @@ -225,7 +225,7 @@ module.exports = {
th: 'จำนวนข้อความที่จะลบ',
})
.setRequired(true)
.setMinValue(0)
.setMinValue(1)
.setMaxValue(100)
)
.addChannelOption((option) =>
Expand Down

0 comments on commit 1a827ac

Please sign in to comment.