blob: edd511f2d0c7fc8331305db448376651c46353b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package moe.nea.firmament.features.garden
import net.minecraft.world.entity.animal.wolf.WolfSoundVariants
import net.minecraft.sounds.SoundEvent
import net.minecraft.sounds.SoundEvents
import moe.nea.firmament.annotations.Subscribe
import moe.nea.firmament.events.SoundReceiveEvent
import moe.nea.firmament.util.SBData
import moe.nea.firmament.util.SkyBlockIsland
import moe.nea.firmament.util.data.Config
import moe.nea.firmament.util.data.ManagedConfig
object HideComposterNoises {
@Config
object TConfig : ManagedConfig("composter", Category.GARDEN) {
val hideComposterNoises by toggle("no-more-noises") { false }
}
val composterSoundEvents: List<SoundEvent> = listOf(
SoundEvents.PISTON_EXTEND,
SoundEvents.WATER_AMBIENT,
SoundEvents.CHICKEN_EGG,
SoundEvents.WOLF_SOUNDS[WolfSoundVariants.SoundSet.CLASSIC]!!.growlSound().value(),
)
@Subscribe
fun onNoise(event: SoundReceiveEvent) {
if (!TConfig.hideComposterNoises) return
if (SBData.skyblockLocation == SkyBlockIsland.GARDEN) {
if (event.sound.value() in composterSoundEvents)
event.cancel()
}
}
}
|