SteamWar/BauSystem2.0
Archiviert
12
0

Fix ParticleShowMode

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2021-06-26 17:19:03 +02:00
Ursprung bce9cfaa21
Commit f8cdee3c0f

Datei anzeigen

@ -57,7 +57,7 @@ public class ParticleShowMode implements ShowMode<TNTPosition> {
if (bukkitTask == null) { if (bukkitTask == null) {
bukkitTask = Bukkit.getScheduler().runTaskTimer(BauSystem.getInstance(), () -> { bukkitTask = Bukkit.getScheduler().runTaskTimer(BauSystem.getInstance(), () -> {
positionSet.forEach(p -> player.spawnParticle(Particle.BARRIER, p.toLocation(player.getWorld()), 1, 0, 0, 0, 0)); positionSet.forEach(p -> player.spawnParticle(Particle.BARRIER, p.toLocation(player.getWorld()), 1, 0, 0, 0, 0));
}, 40L, 0L); }, 40L, 40L);
} }
} }