SPIGOT-236 - fix notes playing wrongly.

Formula is from BlockNote (NMS), slightly formatted different to be smaller.
Dieser Commit ist enthalten in:
FearThe1337 2014-12-17 17:00:10 +01:00 committet von md_5
Ursprung 975c9ed4f9
Commit 6fab8fe51e

Datei anzeigen

@ -266,7 +266,9 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
instrumentName = "bassattack";
break;
}
getHandle().playerConnection.sendPacket(new PacketPlayOutNamedSoundEffect("note."+instrumentName, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), 3.0f, note));
float f = (float) Math.pow(2.0D, (note - 12.0D) / 12.0D);
getHandle().playerConnection.sendPacket(new PacketPlayOutNamedSoundEffect("note."+instrumentName, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), 3.0f, f));
}
@Override
@ -291,7 +293,8 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
instrumentName = "bassattack";
break;
}
getHandle().playerConnection.sendPacket(new PacketPlayOutNamedSoundEffect("note."+instrumentName, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), 3.0f, note.getId()));
float f = (float) Math.pow(2.0D, (note.getId() - 12.0D) / 12.0D);
getHandle().playerConnection.sendPacket(new PacketPlayOutNamedSoundEffect("note."+instrumentName, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), 3.0f, f));
}
@Override