Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Sep 19, 2023
1 parent af85d40 commit 105d8be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fun SubCommandModule.addCommand() = ephemeralSubCommand(::AddSoundCommandArgumen
arguments.description, arguments.emoji?.toEmoji(),
public = arguments.public,
tag = arguments.tag,
volume = arguments.volume
volume = arguments.volume ?: 100
)
val file = Config.SOUNDS_FOLDER / sound.fileName
val soundsFolder = file.parent
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.12.23"
version = "1.12.24"

repositories {
mavenCentral()
Expand Down

0 comments on commit 105d8be

Please sign in to comment.