mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 00:07:56 +01:00
ParticleBuilder.hasReceivers shouldnt return true if no players are in the world
This commit is contained in:
parent
3f4bd3e8f7
commit
d4e763c30e
@ -10,7 +10,7 @@ This adds a new Builder API which is much friendlier to use.
|
||||
|
||||
diff --git a/src/main/java/com/destroystokyo/paper/ParticleBuilder.java b/src/main/java/com/destroystokyo/paper/ParticleBuilder.java
|
||||
new file mode 100644
|
||||
index 00000000..ef07ab3c
|
||||
index 00000000..bf4edd07
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/com/destroystokyo/paper/ParticleBuilder.java
|
||||
@@ -0,0 +0,0 @@
|
||||
@ -96,7 +96,7 @@ index 00000000..ef07ab3c
|
||||
+ * @return If this particle is going to be sent to someone
|
||||
+ */
|
||||
+ public boolean hasReceivers() {
|
||||
+ return receivers == null || !receivers.isEmpty();
|
||||
+ return (receivers == null && !location.getWorld().getPlayers().isEmpty()) || !receivers.isEmpty();
|
||||
+ }
|
||||
+
|
||||
+ /**
|
||||
|
Loading…
Reference in New Issue
Block a user