Paper/Spigot-Server-Patches/0083-Use-a-Shared-Random-for-Entities.patch

32 lines
1.3 KiB
Diff
Raw Normal View History

2017-07-03 17:38:49 +02:00
From 19fdfda935458294c463662d6fe7826d4a3dbe36 Mon Sep 17 00:00:00 2001
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
2017-07-03 17:38:49 +02:00
index f26a438af..8aba80c07 100644
--- a/src/main/java/net/minecraft/server/Entity.java
+++ b/src/main/java/net/minecraft/server/Entity.java
2016-12-20 23:34:27 +01:00
@@ -46,6 +46,7 @@ public abstract class Entity implements ICommandListener {
// 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;
}
2017-05-14 20:05:01 +02:00
@@ -165,7 +166,7 @@ public abstract class Entity implements ICommandListener {
this.length = 1.8F;
2016-06-09 05:57:14 +02:00
this.ax = 1;
2017-05-14 20:05:01 +02:00
this.ay = 1.0F;
- this.random = new Random();
+ this.random = SHARED_RANDOM; // Paper
2016-11-17 03:23:38 +01:00
this.fireTicks = -this.getMaxFireTicks();
this.justCreated = true;
this.uniqueID = MathHelper.a(this.random);
--
2017-07-03 17:38:49 +02:00
2.13.2