mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 23:29:32 +01:00
Make the duplicate entity UUID warning toggleable
This commit is contained in:
parent
5063a0613d
commit
a55011eb68
2 changed files with 40 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
From 364348e091cd60843ae06ff5add8b4affcac2d83 Mon Sep 17 00:00:00 2001
|
From c63a19607dba02582a3e2f7ec98d9e16402ea885 Mon Sep 17 00:00:00 2001
|
||||||
From: Steve Anton <anxuiz.nx@gmail.com>
|
From: Steve Anton <anxuiz.nx@gmail.com>
|
||||||
Date: Tue, 22 Dec 2015 22:04:15 -0600
|
Date: Tue, 22 Dec 2015 22:04:15 -0600
|
||||||
Subject: [PATCH] Add PlayerInitialSpawnEvent
|
Subject: [PATCH] Add PlayerInitialSpawnEvent
|
||||||
|
@ -6,10 +6,10 @@ Subject: [PATCH] Add PlayerInitialSpawnEvent
|
||||||
For modifying a player's initial spawn location as they join the server
|
For modifying a player's initial spawn location as they join the server
|
||||||
|
|
||||||
diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java
|
diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java
|
||||||
index deb0b82..becd11c 100644
|
index deb0b82..c33915e 100644
|
||||||
--- a/src/main/java/net/minecraft/server/PlayerList.java
|
--- a/src/main/java/net/minecraft/server/PlayerList.java
|
||||||
+++ b/src/main/java/net/minecraft/server/PlayerList.java
|
+++ b/src/main/java/net/minecraft/server/PlayerList.java
|
||||||
@@ -99,6 +88,22 @@ public abstract class PlayerList {
|
@@ -99,6 +99,22 @@ public abstract class PlayerList {
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
From 3a58d39da336a69bd6f3318aedaf60b1719b23a1 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
||||||
|
Date: Mon, 28 Dec 2015 20:06:25 -0600
|
||||||
|
Subject: [PATCH] Make duplicate entity UUID logging toggleable
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
||||||
|
index 6186f6c..3ec58dc 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
||||||
|
@@ -995,7 +995,7 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
||||||
|
// CraftBukkit start
|
||||||
|
UUID uuid = entity.getUniqueID();
|
||||||
|
|
||||||
|
- if (this.entitiesByUUID.containsKey(uuid)) {
|
||||||
|
+ if (this.paperSpigotConfig.logDuplicateEntityUUIDs && this.entitiesByUUID.containsKey(uuid)) { // PaperSpigot - Make toggleable
|
||||||
|
Entity entity1 = (Entity) this.entitiesByUUID.get(uuid);
|
||||||
|
|
||||||
|
if (this.g.contains(entity1)) {
|
||||||
|
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||||
|
index 7d46f2c..fbb83a1 100644
|
||||||
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||||
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||||
|
@@ -414,4 +414,10 @@ public class PaperSpigotWorldConfig
|
||||||
|
{
|
||||||
|
useHopperCheck = getBoolean( "use-hopper-check", false );
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ public boolean logDuplicateEntityUUIDs;
|
||||||
|
+ private void logDuplicateEntityUUIDs()
|
||||||
|
+ {
|
||||||
|
+ logDuplicateEntityUUIDs = getBoolean( "log-duplicate-entity-UUIDs", true );
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.6.4
|
||||||
|
|
Loading…
Reference in a new issue