Fixed particles

This commit is contained in:
Brianna O'Keefe 2019-02-19 14:19:13 -05:00
parent d88d5ecde1
commit 838007eb3e

View File

@ -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));
}
}