mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-15 14:13:56 +01:00
Add missing coverages for getTileEntity in order to attempt to avoid exeptions when calling getTileEntity (#797)
This commit is contained in:
parent
c86f61f8af
commit
6177f2d61e
1 changed files with 28 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
From 2b0c67ca443f56e8348ac59c4c17d97904c2529b Mon Sep 17 00:00:00 2001
|
||||
From: Shane Freeder <theboyetronic@gmail.com>
|
||||
Date: Sat, 22 Jul 2017 15:22:59 +0100
|
||||
Subject: [PATCH] Add missing coverages for getTileEntity in order to attempt
|
||||
to avoid exeptions when calling getTileEntity
|
||||
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
||||
index bde48b692..34a974617 100644
|
||||
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
||||
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
||||
@@ -234,6 +234,13 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
||||
result = fixTileEntity(pos, type, result);
|
||||
}
|
||||
}
|
||||
+ // Paper Start - add TE fix checks for shulkers, see nms.BlockShulkerBox
|
||||
+ else if (type instanceof BlockShulkerBox) {
|
||||
+ if (!(result instanceof TileEntityShulkerBox)) {
|
||||
+ result = fixTileEntity(pos, type, result);
|
||||
+ }
|
||||
+ }
|
||||
+ // Paper end
|
||||
|
||||
return result;
|
||||
}
|
||||
--
|
||||
2.13.3
|
||||
|
Loading…
Reference in a new issue