diff --git a/src/main/java/dev/espi/protectionstones/commands/ArgView.java b/src/main/java/dev/espi/protectionstones/commands/ArgView.java index 4d5991f6..4ae3bf9f 100644 --- a/src/main/java/dev/espi/protectionstones/commands/ArgView.java +++ b/src/main/java/dev/espi/protectionstones/commands/ArgView.java @@ -143,7 +143,7 @@ private static boolean handleBlueParticle(Player p, Location l) { private static boolean handlePurpleParticle(Player p, Location l) { if (p.getLocation().distance(l) > PARTICLE_VIEW_DISTANCE_LIMIT || Math.abs(l.getY()-p.getLocation().getY()) > 30) return false; - ParticlesUtil.persistRedstoneParticle(p, l, new Particle.DustOptions(Color.fromRGB(255, 0, 255), 10), 30); + ParticlesUtil.persistRedstoneParticle(p, l, new Particle.DustOptions(Color.fromRGB(255, 0, 255), 2), 30); return true; } }