fix: some block position stereo thingy (extend range so it's more noticeable)
This commit is contained in:
@@ -1 +1 @@
|
||||
1374
|
||||
1383
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user