2014-04-14 02:40:29 +02:00
From 0c0bfe8b1127e609cdaf82697bf7ba4a87af5cd3 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
2014-03-23 01:06:43 +01:00
index 4bcd57e..621f593 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
2014-03-23 01:06:43 +01:00
@@ -140,7 +140,7 @@ public abstract class Entity {
2013-12-09 17:19:26 +01:00
this.random = new Random();
2013-07-02 05:03:56 +02:00
this.maxFireTicks = 1;
this.justCreated = true;
2013-12-09 17:19:26 +01:00
- this.uniqueID = UUID.randomUUID();
2013-03-17 09:02:58 +01:00
+ this.uniqueID = new UUID(random.nextLong(), random.nextLong()); // Spigot
2014-03-23 01:06:43 +01:00
this.as = EnumEntitySize.SIZE_2;
2013-03-17 09:02:58 +01:00
this.world = world;
this.setPosition(0.0D, 0.0D, 0.0D);
--
2014-04-14 02:40:29 +02:00
1.8.3.2
2013-03-17 09:02:58 +01:00