mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-13 19:25:49 -07:00
Exempted moving pistons from the tile entity fix.
This commit is contained in:
@@ -49,10 +49,6 @@ public class WorldServer extends World implements BlockChangeDelegate {
|
|||||||
if (!(result instanceof TileEntityFurnace)) {
|
if (!(result instanceof TileEntityFurnace)) {
|
||||||
result = fixTileEntity(i, j, k, type, result);
|
result = fixTileEntity(i, j, k, type, result);
|
||||||
}
|
}
|
||||||
} else if (type == Block.PISTON_MOVING.id) {
|
|
||||||
if (!(result instanceof TileEntityPiston)) {
|
|
||||||
result = fixTileEntity(i, j, k, type, result);
|
|
||||||
}
|
|
||||||
} else if (type == Block.DISPENSER.id) {
|
} else if (type == Block.DISPENSER.id) {
|
||||||
if (!(result instanceof TileEntityDispenser)) {
|
if (!(result instanceof TileEntityDispenser)) {
|
||||||
result = fixTileEntity(i, j, k, type, result);
|
result = fixTileEntity(i, j, k, type, result);
|
||||||
|
Reference in New Issue
Block a user