Commits
md_5 authored 568e27fbd08
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 138 | |
139 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); |
140 + | if (type != 0) { |
141 + | chunk.getHandle().getWorld().setTypeAndData(position, Blocks.AIR.getBlockData(), 0); |
142 + | } |
141 143 | |
142 144 | if (applyPhysics) { |
143 145 | return chunk.getHandle().getWorld().setTypeAndData(position, blockData, 3); |
144 146 | } else { |
145 147 | IBlockData old = chunk.getHandle().getBlockData(position); |
146 148 | boolean success = chunk.getHandle().getWorld().setTypeAndData(position, blockData, 2); |
147 149 | if (success) { |
148 150 | chunk.getHandle().getWorld().notify( |
149 151 | position, |
150 152 | old, |