2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: MeFisto94 <MeFisto94@users.noreply.github.com>
|
|
|
|
Date: Fri, 28 Aug 2020 01:41:31 +0200
|
|
|
|
Subject: [PATCH] Expose the Entity Counter to allow plugins to use valid and
|
|
|
|
non-conflicting Entity Ids
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/UnsafeValues.java b/src/main/java/org/bukkit/UnsafeValues.java
|
2023-10-22 21:12:00 +02:00
|
|
|
index f063016f8a88dbff480ac3b4b3ef05c16a8e515a..96b66f4f6fb8637ab3ad275ddd980d5b71711a6c 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/UnsafeValues.java
|
|
|
|
+++ b/src/main/java/org/bukkit/UnsafeValues.java
|
2023-10-22 21:12:00 +02:00
|
|
|
@@ -138,5 +138,12 @@ public interface UnsafeValues {
|
2023-02-15 23:10:14 +01:00
|
|
|
byte[] serializeItem(ItemStack item);
|
|
|
|
|
|
|
|
ItemStack deserializeItem(byte[] data);
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Creates and returns the next EntityId available.
|
|
|
|
+ * <p>
|
|
|
|
+ * Use this when sending custom packets, so that there are no collisions on the client or server.
|
|
|
|
+ */
|
|
|
|
+ public int nextEntityId();
|
|
|
|
// Paper end
|
|
|
|
}
|