summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nms-patches/WorldServer.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/nms-patches/WorldServer.patch b/nms-patches/WorldServer.patch
index d5b3a137..844080d5 100644
--- a/nms-patches/WorldServer.patch
+++ b/nms-patches/WorldServer.patch
@@ -160,7 +160,7 @@
+ result = fixTileEntity(pos, type, result);
+ }
+ } else if (type == Blocks.END_PORTAL) {
-+ if (!(result instanceof TileEntityEndGateway)) {
++ if (!(result instanceof TileEntityEnderPortal)) {
+ result = fixTileEntity(pos, type, result);
+ }
+ } else if (type == Blocks.SKULL) {
@@ -187,7 +187,7 @@
+ if (!(result instanceof TileEntityStructure)) {
+ result = fixTileEntity(pos, type, result);
+ }
-+ } else if (type == Blocks.END_PORTAL) {
++ } else if (type == Blocks.END_GATEWAY) {
+ if (!(result instanceof TileEntityEndGateway)) {
+ result = fixTileEntity(pos, type, result);
+ }