Commits

md_5 authored 341da0730b2
SPIGOT-611: Improve setBlock for tile->tile transitions
No tags

src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java

Modified
128 128 }
129 129
130 130 public boolean setTypeId(final int type, final boolean applyPhysics) {
131 131 net.minecraft.server.Block block = getNMSBlock(type);
132 132 return setTypeIdAndData(type, (byte) block.toLegacyData(block.getBlockData()), applyPhysics);
133 133 }
134 134
135 135 public boolean setTypeIdAndData(final int type, final byte data, final boolean applyPhysics) {
136 136 IBlockData blockData = getNMSBlock(type).fromLegacyData(data);
137 137 BlockPosition position = new BlockPosition(x, y, z);
138 +
139 + // SPIGOT-611: need to do this to prevent glitchiness. Easier to handle this here (like /setblock) than to fix weirdness in tile entity cleanup
140 + chunk.getHandle().getWorld().setTypeAndData(position, Blocks.AIR.getBlockData(), 0);
141 +
138 142 if (applyPhysics) {
139 143 return chunk.getHandle().getWorld().setTypeAndData(position, blockData, 3);
140 144 } else {
141 145 IBlockData old = chunk.getHandle().getBlockData(position);
142 146 boolean success = chunk.getHandle().getWorld().setTypeAndData(position, blockData, 2);
143 147 if (success) {
144 148 chunk.getHandle().getWorld().notify(
145 149 position,
146 150 old,
147 151 blockData,

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut