Paper/CraftBukkit-Patches/0023-Faster-UUID-for-entities.patch

23 lines
1 KiB
Diff
Raw Normal View History

2013-12-01 03:40:53 +00:00
From 1269d4ea0528dbf92fcd1b1c9c40ed2917b6a572 Mon Sep 17 00:00:00 2001
From: md_5 <md_5@live.com.au>
Date: Sun, 17 Mar 2013 19:02:50 +1100
Subject: [PATCH] Faster UUID for entities
It is overkill to create a new SecureRandom on each entity create and then use it to make a new Entity ID for every entity instance created. Instead we will just use a pseudo random UUID based off the random instance we already have.
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
2013-12-01 03:40:53 +00:00
index 4d573e6..621e6c2 100644
--- a/src/main/java/net/minecraft/server/Entity.java
+++ b/src/main/java/net/minecraft/server/Entity.java
2013-12-01 03:40:53 +00:00
@@ -139,6 +139,7 @@ public abstract class Entity {
2013-07-02 03:03:56 +00:00
this.maxFireTicks = 1;
this.justCreated = true;
2013-12-01 03:40:53 +00:00
this.uniqueID = UUID.randomUUID();
+ this.uniqueID = new UUID(random.nextLong(), random.nextLong()); // Spigot
this.at = EnumEntitySize.SIZE_2;
this.world = world;
this.setPosition(0.0D, 0.0D, 0.0D);
--
2013-12-01 03:40:53 +00:00
1.8.3.2