1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Fix particles

This commit is contained in:
Steve 2019-01-26 16:21:27 +03:00 committed by GitHub
parent 81dc3e4abb
commit c62c3246ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,7 @@ public abstract class Network {
public void run() {
for(Location l: connectedLocations) {
try {
l.getWorld().spawnParticle(Particle.REDSTONE, l.clone().add(0.5, 0.5, 0.5), 1);
l.getWorld().spawnParticle(Particle.REDSTONE, l.clone().add(0.5, 0.5, 0.5), 1, new Particle.DustOptions(Color.RED, 1.0F));
} catch(Exception e) {
}