Skip to content

Commit 7dca6ab

Browse files
authored
Fix style errors
1 parent b389d2d commit 7dca6ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/glowstone/entity/GlowPlayer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1917,14 +1917,14 @@ public void playNote(Location loc, Instrument instrument, Note note) {
19171917
float pitch = (float) Math.pow(2, octave) / 2f;
19181918
for (int i = 1; i <= step; i++) {
19191919
if (i < 7) {
1920-
pitch += 1f/3f;
1920+
pitch += 1f / 3f;
19211921
} else if (step < 18) {
19221922
pitch += 0.05f;
19231923
} else {
19241924
pitch += 0.1f;
19251925
}
19261926
}
1927-
playSound(loc, sound, SoundCategory.MUSIC,3.0f, pitch);
1927+
playSound(loc, sound, SoundCategory.MUSIC, 3.0f, pitch);
19281928
}
19291929

19301930
@Override

0 commit comments

Comments
 (0)