Skip to content

Commit c76d2a4

Browse files
committed
adjusted default
1 parent 80cb0f0 commit c76d2a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/kotlin/com/github/subat0m1c/hatecheaters/modules/BetterPartyFinder.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ object BetterPartyFinder : Module(
2222
description = "Provides stats when a player joins your party. Includes autokick functionality. /hcitems to configure important items list.",
2323
category = Category.DUNGEON
2424
) {
25-
private val defaultSounds = arrayListOf("mob.blaze.hit", "random.pop", "random.orb", "random.break", "mob.guardian.land.hit", "Custom")
25+
private val defaultSounds = arrayListOf("note.pling", "random.pop", "random.orb", "random.break", "mob.guardian.land.hit", "Custom")
2626

2727
private val fullPartyNotification by BooleanSetting("Full Party Notification", default = true, description = "Notifies you when your party is full.")
2828
private val joinSound by BooleanSetting("Party Join Sound", default = false, description = "Plays a sound when someone joins your party.")
2929
private val soundDropdown by DropdownSetting("Sound Dropdown")
3030
private val waitForKick by BooleanSetting("Wait for Kick", default = true, description = "Waits to see if the player will be kicked before playing the sound.").withDependency { joinSound && soundDropdown }
3131

32-
private val sound by SelectorSetting("Click Sound", "mob.blaze.hit", defaultSounds, description = "Which sound to play when you click in a terminal.").withDependency { joinSound && soundDropdown}
33-
private val customSound by StringSetting("Custom Click Sound", "mob.blaze.hit",
32+
private val sound by SelectorSetting("Click Sound", "note.pling", defaultSounds, description = "Which sound to play when you click in a terminal.").withDependency { joinSound && soundDropdown}
33+
private val customSound by StringSetting("Custom Click Sound", "note.pling",
3434
description = "Name of a custom sound to play. This is used when Custom is selected in the Sound setting.", length = 32
3535
).withDependency { sound == defaultSounds.size - 1 && joinSound && soundDropdown }
3636
private val volume by NumberSetting("Click Volume", 1f, 0, 1, .01f, description = "Volume of the sound.").withDependency { joinSound && soundDropdown }

0 commit comments

Comments
 (0)