added interaction sounds to settings

This commit is contained in:
2025-07-19 16:36:31 +02:00
parent 977f4ff4ec
commit ef6f34c2b2
3 changed files with 14 additions and 0 deletions

View File

@ -34,4 +34,12 @@ public class InteractSounds {
public void delete() {
this.playSound(SoundEventKeys.ENTITY_SILVERFISH_DEATH);
}
public void open() {
this.playSound(SoundEventKeys.BLOCK_BARREL_OPEN);
}
public void close() {
this.playSound(SoundEventKeys.BLOCK_BARREL_CLOSE);
}
}