From 5379e60569994cd0e3dc815ecdc8854c3f7e789c Mon Sep 17 00:00:00 2001 From: flutz1 Date: Sun, 23 Aug 2026 12:40:27 +0200 Subject: [PATCH] Dustoption size adjusted to match the otherones. --- src/main/java/dev/espi/protectionstones/commands/ArgView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }