Notify neighbors on machine removal. Closes #2484

This commit is contained in:
drcrazy 2021-09-20 12:03:17 +03:00
parent a5aa7acc83
commit 773f9f06c1

View file

@ -78,7 +78,7 @@ public class WrenchUtils {
net.minecraft.util.ItemScatterer.spawn(worldIn, pos.getX(), pos.getY(), pos.getZ(), drop); net.minecraft.util.ItemScatterer.spawn(worldIn, pos.getX(), pos.getY(), pos.getZ(), drop);
} }
worldIn.removeBlockEntity(pos); worldIn.removeBlockEntity(pos);
worldIn.setBlockState(pos, Blocks.AIR.getDefaultState(), 2); worldIn.setBlockState(pos, Blocks.AIR.getDefaultState());
} }
worldIn.playSound(null, playerIn.getX(), playerIn.getY(), playerIn.getZ(), ModSounds.BLOCK_DISMANTLE, worldIn.playSound(null, playerIn.getX(), playerIn.getY(), playerIn.getZ(), ModSounds.BLOCK_DISMANTLE,
SoundCategory.BLOCKS, 0.6F, 1F); SoundCategory.BLOCKS, 0.6F, 1F);