From 838007eb3e4ea5f3ab4021199977654ed9967a4a Mon Sep 17 00:00:00 2001 From: Brianna O'Keefe Date: Tue, 19 Feb 2019 14:19:13 -0500 Subject: [PATCH] Fixed particles --- .../java/com/songoda/epicanchors/handlers/AnchorHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EpicAnchors-Plugin/src/main/java/com/songoda/epicanchors/handlers/AnchorHandler.java b/EpicAnchors-Plugin/src/main/java/com/songoda/epicanchors/handlers/AnchorHandler.java index 8b337b2..2b22048 100644 --- a/EpicAnchors-Plugin/src/main/java/com/songoda/epicanchors/handlers/AnchorHandler.java +++ b/EpicAnchors-Plugin/src/main/java/com/songoda/epicanchors/handlers/AnchorHandler.java @@ -39,7 +39,7 @@ public class AnchorHandler { xx = (float) (0 + (Math.random() * .75)); yy = (float) (0 + (Math.random() * 1)); zz = (float) (0 + (Math.random() * .75)); - location1.getWorld().spawnParticle(Particle.REDSTONE, location1, 5, xx, yy, zz, 1); + location1.getWorld().spawnParticle(Particle.REDSTONE, location1, 5, xx, yy, zz, 1, new Particle.DustOptions(Color.WHITE, 1F)); } }