2013-06-02 07:15:15 +02:00
From 09451a41363411c2e39bf31616ce1dcc0d2ddb6a Mon Sep 17 00:00:00 2001
2013-03-17 09:02:58 +01:00
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-06-02 07:15:15 +02:00
index 861c8e1..ae2db03 100644
2013-03-17 09:02:58 +01:00
--- a/src/main/java/net/minecraft/server/Entity.java
+++ b/src/main/java/net/minecraft/server/Entity.java
2013-04-12 05:57:00 +02:00
@@ -153,7 +153,7 @@ public abstract class Entity {
2013-03-17 09:02:58 +01:00
this.ai = false;
this.as = 0;
this.invulnerable = false;
- 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-06-02 07:15:15 +02:00
1.8.1.2
2013-03-17 09:02:58 +01:00