From d236b70546a1fbe54eecf9e67929520db5e117fd Mon Sep 17 00:00:00 2001 From: piebot Date: Wed, 15 Jul 2026 14:57:35 +0300 Subject: [PATCH] fix(TU20): Noteblock fall-off distance so they can be heard further away. --- Minecraft.World/NoteBlockTile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.World/NoteBlockTile.cpp b/Minecraft.World/NoteBlockTile.cpp index 5003cd8c..e13fbdee 100644 --- a/Minecraft.World/NoteBlockTile.cpp +++ b/Minecraft.World/NoteBlockTile.cpp @@ -79,7 +79,7 @@ bool NoteBlockTile::triggerEvent(Level *level, int x, int y, int z, int i, int n break; } app.DebugPrintf("NoteBlockTile::triggerEvent - playSound - pitch = %f\n",pitch); - level->playSound(x + 0.5, y + 0.5, z + 0.5, iSound, 3, pitch); + level->playSound(x + 0.5, y + 0.5, z + 0.5, iSound, 3, pitch, 64.0); level->addParticle(eParticleType_note, x + 0.5, y + 1.2, z + 0.5, note / 24.0, 0, 0); return true;