mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
SPIGOT-2503: Optimize block set
By: md_5 <git@md-5.net>
This commit is contained in:
parent
b46eb8a572
commit
09f5487458
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ public class CraftBlock implements Block {
|
|||
BlockPosition position = new BlockPosition(x, y, z);
|
||||
|
||||
// SPIGOT-611: need to do this to prevent glitchiness. Easier to handle this here (like /setblock) than to fix weirdness in tile entity cleanup
|
||||
if (type != 0 && type != getTypeId()) {
|
||||
if (type != 0 && blockData.getBlock() instanceof BlockTileEntity && type != getTypeId()) {
|
||||
chunk.getHandle().getWorld().setTypeAndData(position, Blocks.AIR.getBlockData(), 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue