mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 02:42:14 +01:00
7e8ae207bd
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: e99c9444 Add Plugin Chunk Ticket API 6a235f06 Fix incorrect nullability annotations for PlayerJoinEvent's join message CraftBukkit Changes:5f889388
Tweak build expiration to 7 days572c02b0
MC-155077, SPIGOT-5113: EntityTracker desync7ad3a1f4
SPIGOT-5146: BlockDataMeta does not work60860983
SPIGOT-5155: Setting EntityExplodeEvent yield to 0 still causes blocks to drop087a2cf4
Print number of force loaded chunks per plugin in crash reports07b5b06d
Add Plugin Chunk Ticket API7ffb2a27
SPIGOT-5149: resetRecipes does nothinga2275f19
SPIGOT-5141: World.generateTree() causes ClassCastException with huge mushrooms31d4a777
SPIGOT-5142: Ignore invalid firework effects Spigot Changes: 5e4e7f32 BUILDTOOLS-471: Rebuild patches 6e944739 SPIGOT-5159: Raider activation range overridden by Monster range
50 lines
1.3 KiB
Diff
50 lines
1.3 KiB
Diff
From 41416263ef8de31d9129e830cfffaf406bc56060 Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Sat, 7 Jan 2017 15:23:03 -0500
|
|
Subject: [PATCH] Provide E/TE/Chunk count stat methods
|
|
|
|
Provides counts without the ineffeciency of using .getEntities().size()
|
|
which creates copy of the collections.
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
|
index 4af195b4..58414e01 100644
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
+++ b/src/main/java/org/bukkit/World.java
|
|
@@ -39,6 +39,33 @@ import org.jetbrains.annotations.Nullable;
|
|
*/
|
|
public interface World extends PluginMessageRecipient, Metadatable {
|
|
|
|
+ // Paper start
|
|
+ /**
|
|
+ * @return The amount of Entities in this world
|
|
+ */
|
|
+ int getEntityCount();
|
|
+
|
|
+ /**
|
|
+ * @return The amount of Tile Entities in this world
|
|
+ */
|
|
+ int getTileEntityCount();
|
|
+
|
|
+ /**
|
|
+ * @return The amount of Tickable Tile Entities in this world
|
|
+ */
|
|
+ int getTickableTileEntityCount();
|
|
+
|
|
+ /**
|
|
+ * @return The amount of Chunks in this world
|
|
+ */
|
|
+ int getChunkCount();
|
|
+
|
|
+ /**
|
|
+ * @return The amount of Players in this world
|
|
+ */
|
|
+ int getPlayerCount();
|
|
+ // Paper end
|
|
+
|
|
/**
|
|
* Gets the {@link Block} at the given coordinates
|
|
*
|
|
--
|
|
2.22.0
|
|
|