Craftbukkit changes for UtilParticle update, and UtilParticle fix

This commit is contained in:
Shaun Bennett 2015-05-03 14:42:31 -05:00
parent 74dbf7e827
commit 17cbcc3771
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -213,7 +213,7 @@ public class UtilParticle
public static void PlayParticle(Player player, String particleName, Location location, float offsetX, float offsetY, public static void PlayParticle(Player player, String particleName, Location location, float offsetX, float offsetY,
float offsetZ, float speed, int count, boolean displayFar) float offsetZ, float speed, int count, boolean displayFar)
{ {
PacketPlayOutWorldParticles packet = getPacket(particleName, location, offsetX, offsetY, offsetZ, speed, count, false); PacketPlayOutWorldParticles packet = getPacket(particleName, location, offsetX, offsetY, offsetZ, speed, count, displayFar);
UtilPlayer.sendPacket(player, packet); UtilPlayer.sendPacket(player, packet);
} }