fix: some block position stereo thingy (extend range so it's more noticeable)

This commit is contained in:
ChomeNS
2025-01-01 19:24:30 +07:00
parent 309683bde3
commit 82ecf3833d
3 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
1374
1383

View File

@@ -450,7 +450,7 @@ public class MusicPlayerPlugin extends Bot.Listener {
else if (average == 100) pos = 0;
else pos = (float) ((average - 100) * -1) / 100;
blockPosition = Vector3f.from(pos, 0, 0);
blockPosition = Vector3f.from(pos * 4, 0, 0);
} else {
// i wrote this part

View File

@@ -185,7 +185,7 @@ public class NBSConverter implements Converter {
if (note.instrument < instrumentIndex.length) {
instrument = instrumentIndex[note.instrument];
key = note.key + note.pitch / 100;
key = note.key + (note.pitch / 100);
} else {
int index = note.instrument - instrumentIndex.length;