From f25a332b562698afdcf137a66eb7d165213b912b Mon Sep 17 00:00:00 2001 From: Brianna Date: Thu, 14 May 2020 14:37:03 -0400 Subject: [PATCH 1/2] Add compatibility with player specific redstone particles. --- .../CompatibleParticleHandler.java | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/Core/src/main/java/com/songoda/core/compatibility/CompatibleParticleHandler.java b/Core/src/main/java/com/songoda/core/compatibility/CompatibleParticleHandler.java index 769c7b9a..3ee4c35f 100644 --- a/Core/src/main/java/com/songoda/core/compatibility/CompatibleParticleHandler.java +++ b/Core/src/main/java/com/songoda/core/compatibility/CompatibleParticleHandler.java @@ -5,7 +5,9 @@ import org.bukkit.Effect; import org.bukkit.Location; import org.bukkit.Particle; import org.bukkit.block.BlockFace; +import org.bukkit.entity.Player; +import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.stream.Stream; @@ -218,7 +220,11 @@ public class CompatibleParticleHandler { } public static void redstoneParticles(Location location, int red, int green, int blue) { - redstoneParticles(location, red, green, blue, 1F, 1, 0); + redstoneParticles(location, red, green, blue, 1F, 1, 0, null); + } + + public static void redstoneParticles(Location location, int red, int green, int blue, float size, int count, float radius) { + redstoneParticles(location, red, green, blue, size, count, radius, null); } /** @@ -232,19 +238,25 @@ public class CompatibleParticleHandler { * @param count how many particles to spawn * @param radius how far to spread out the particles from location */ - public static void redstoneParticles(Location location, int red, int green, int blue, float size, int count, float radius) { + public static void redstoneParticles(Location location, int red, int green, int blue, float size, int count, float radius, Player player) { if (ServerVersion.isServerVersionAtLeast(ServerVersion.V1_13)) { float xx = (float) (radius * (Math.random() - Math.random())); float yy = (float) (radius * (Math.random() - Math.random())); float zz = (float) (radius * (Math.random() - Math.random())); - location.getWorld().spawnParticle(Particle.REDSTONE, location, count, xx, yy, zz, 1, new Particle.DustOptions(Color.fromBGR(blue, green, red), size)); + if (player == null) + location.getWorld().spawnParticle(Particle.REDSTONE, location, count, xx, yy, zz, 1, new Particle.DustOptions(Color.fromBGR(blue, green, red), size)); + else + player.spawnParticle(Particle.REDSTONE, location, count, xx, yy, zz, 1, new Particle.DustOptions(Color.fromBGR(blue, green, red), size)); } else if (ServerVersion.isServerVersionAtLeast(ServerVersion.V1_9)) { for (int i = 0; i < count; i++) { float xx = (float) (radius * (Math.random() - Math.random())); float yy = (float) (radius * (Math.random() - Math.random())); float zz = (float) (radius * (Math.random() - Math.random())); Location at = location.clone().add(xx, yy, zz); - location.getWorld().spawnParticle(Particle.REDSTONE, at, 0, red / 255F, green / 255F, blue / 255F, size); // particle, location, count, red, green, blue, extra data + if (player == null) + location.getWorld().spawnParticle(Particle.REDSTONE, at, 0, red / 255F, green / 255F, blue / 255F, size); // particle, location, count, red, green, blue, extra data + else + player.spawnParticle(Particle.REDSTONE, at, 0, red / 255F, green / 255F, blue / 255F, size); // particle, location, count, red, green, blue, extra data } } else { // WE NEED MAGIC! @@ -254,7 +266,8 @@ public class CompatibleParticleHandler { float zz = (float) (radius * (Math.random() - Math.random())); Location at = location.clone().add(xx, yy, zz); LegacyParticleEffects.createParticle(at, LegacyParticleEffects.Type.REDSTONE, - red / 255F, green / 255F, blue / 255F, 1F, 0, null); + red / 255F, green / 255F, blue / 255F, 1F, + 0, player == null ? null : Collections.singletonList(player)); } } } From e82b4fe24036a5b56bb40292c610ac474419bc93 Mon Sep 17 00:00:00 2001 From: Brianna Date: Thu, 14 May 2020 14:37:41 -0400 Subject: [PATCH 2/2] version 2.3.33 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 56021c73..766631e7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: variables: name: "SongodaCore" path: "/builds/$CI_PROJECT_PATH" - version: "2.3.32" + version: "2.3.33" build: stage: build