mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-01 04:37:09 +00:00
20 lines
1.1 KiB
Diff
20 lines
1.1 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Luna <lunahatesgogle@gmail.com>
|
||
|
Date: Fri, 28 Apr 2023 16:46:00 -0300
|
||
|
Subject: [PATCH] Don't warn on duplicate entity UUIDs
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/io/papermc/paper/chunk/system/entity/EntityLookup.java b/src/main/java/io/papermc/paper/chunk/system/entity/EntityLookup.java
|
||
|
index 61c170555c8854b102c640b0b6a615f9f732edbf..29f46a137584a5f52f3c30b4c352d58ca61488a3 100644
|
||
|
--- a/src/main/java/io/papermc/paper/chunk/system/entity/EntityLookup.java
|
||
|
+++ b/src/main/java/io/papermc/paper/chunk/system/entity/EntityLookup.java
|
||
|
@@ -366,7 +366,7 @@ public final class EntityLookup implements LevelEntityGetter<Entity> {
|
||
|
return false;
|
||
|
}
|
||
|
if (this.entityByUUID.containsKey(entity.getUUID())) {
|
||
|
- LOGGER.warn("Entity uuid already exists: " + entity.getUUID() + ", mapped to " + this.entityByUUID.get(entity.getUUID()) + ", can't add " + entity);
|
||
|
+ // Scissors - Don't warn on duplicate entity UUIDs
|
||
|
return false;
|
||
|
}
|
||
|
this.entityById.put(entity.getId(), entity);
|