2016-04-04 01:11:25 +02:00
|
|
|
From 17199e7d96753b3ff9afe62bbd9e821c46807460 Mon Sep 17 00:00:00 2001
|
2016-03-22 05:36:20 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Tue, 22 Mar 2016 00:33:47 -0400
|
|
|
|
Subject: [PATCH] Use a Shared Random for Entities
|
|
|
|
|
|
|
|
Reduces memory usage and provides ensures more randomness, Especially since a lot of garbage entity objects get created.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2016-04-04 01:11:25 +02:00
|
|
|
index f9626d6..4a4fe34 100644
|
2016-03-22 05:36:20 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2016-04-04 01:11:25 +02:00
|
|
|
@@ -44,6 +44,7 @@ public abstract class Entity implements ICommandListener {
|
2016-03-22 05:36:20 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
private static final int CURRENT_LEVEL = 2;
|
|
|
|
+ public static Random SHARED_RANDOM = new Random(); // Paper
|
|
|
|
static boolean isLevelAtLeast(NBTTagCompound tag, int level) {
|
|
|
|
return tag.hasKey("Bukkit.updateLevel") && tag.getInt("Bukkit.updateLevel") >= level;
|
|
|
|
}
|
2016-04-04 01:11:25 +02:00
|
|
|
@@ -159,7 +160,7 @@ public abstract class Entity implements ICommandListener {
|
2016-03-22 05:36:20 +01:00
|
|
|
this.width = 0.6F;
|
|
|
|
this.length = 1.8F;
|
|
|
|
this.av = 1;
|
|
|
|
- this.random = new Random();
|
|
|
|
+ this.random = SHARED_RANDOM; // Paper
|
|
|
|
this.maxFireTicks = 1;
|
|
|
|
this.justCreated = true;
|
|
|
|
this.uniqueID = MathHelper.a(this.random);
|
|
|
|
--
|
2016-03-31 02:50:23 +02:00
|
|
|
2.8.0
|
2016-03-22 05:36:20 +01:00
|
|
|
|