3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 12:30:06 +01:00

Fix detection of missing or invalid tile entities for End portals and gateways

Dieser Commit ist enthalten in:
Jacob Martin 2017-06-12 12:41:18 -05:00
Ursprung 2a2d6d6295
Commit f7d14f184d

Datei anzeigen

@ -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);
+ }