Skip to content

Commit

Permalink
Fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
codetheweb committed Feb 17, 2024
1 parent 9c595a5 commit e30537b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default class implements Command {
.setDescription('set default volume used when entering the voice channel')
.addIntegerOption(option => option
.setName('level')
.setDescription('percentage as number EG 0 is muted, 100 is default max volume')
.setDescription('volume percentage (0 is muted, 100 is max & default)')
.setMinValue(0)
.setMaxValue(100)
.setRequired(true)))
Expand Down
2 changes: 1 addition & 1 deletion src/commands/volume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class implements Command {
.setDescription('set current player volume level')
.addIntegerOption(option =>
option.setName('level')
.setDescription('volume percentage (0 is muted, 100 is max & default')
.setDescription('volume percentage (0 is muted, 100 is max & default)')
.setMinValue(0)
.setMaxValue(100)
.setRequired(true),
Expand Down

0 comments on commit e30537b

Please sign in to comment.