Skip to content
This repository has been archived by the owner on Jul 7, 2023. It is now read-only.

Commit

Permalink
Fixed seechunk particles being seen by all players & their locations.
Browse files Browse the repository at this point in the history
  • Loading branch information
prosavage committed Jul 30, 2018
1 parent bab7a23 commit a727527
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private void showPillar(Player player, World world, int blockX, int blockZ) {
}
if (useParticles) {
if (P.p.useNonPacketParticles) {
player.getWorld().spawnParticle(Particle.REDSTONE, player.getLocation().add(0, -0.35, 0), 0,new Particle.DustOptions(Color.RED,1));
player.spawnParticle(Particle.REDSTONE, loc, 0, new Particle.DustOptions(Color.RED, 1));
} else {
this.effect.display(0, 0, 0, 0, 1, loc, player);
}
Expand Down

0 comments on commit a727527

Please sign in to comment.