|
167 | 167 | + }
|
168 | 168 | + }
|
169 | 169 | +
|
170 |
| -+ // SPIGOT-7315: Moved from BlockBed#setPlacedBy |
| 170 | ++ // SPIGOT-7315: Moved from BedBlock#setPlacedBy |
171 | 171 | + if (placeEvent != null && this.item instanceof BedItem) {
|
172 |
| -+ BlockPos position = ((org.bukkit.craftbukkit.block.CraftBlock) placeEvent.getBlock()).getPosition(); |
173 |
| -+ net.minecraft.world.level.block.state.BlockState blockData = serverLevel.getBlockState(position); |
| 172 | ++ BlockPos pos = ((org.bukkit.craftbukkit.block.CraftBlock) placeEvent.getBlock()).getPosition(); |
| 173 | ++ net.minecraft.world.level.block.state.BlockState state = serverLevel.getBlockState(pos); |
174 | 174 | +
|
175 |
| -+ if (blockData.getBlock() instanceof net.minecraft.world.level.block.BedBlock) { |
176 |
| -+ serverLevel.updateNeighborsAt(position, net.minecraft.world.level.block.Blocks.AIR); |
177 |
| -+ blockData.updateNeighbourShapes(serverLevel, position, 3); |
| 175 | ++ if (state.getBlock() instanceof net.minecraft.world.level.block.BedBlock) { |
| 176 | ++ serverLevel.updateNeighborsAt(pos, net.minecraft.world.level.block.Blocks.AIR); |
| 177 | ++ state.updateNeighbourShapes(serverLevel, pos, 3); |
178 | 178 | + }
|
179 | 179 | + }
|
180 | 180 | +
|
181 |
| -+ // SPIGOT-1288 - play sound stripped from ItemBlock |
| 181 | ++ // SPIGOT-1288 - play sound stripped from BlockItem |
182 | 182 | + if (this.item instanceof BlockItem) {
|
183 | 183 | + // Paper start - Fix spigot sound playing for BlockItem ItemStacks
|
184 |
| -+ BlockPos position = new net.minecraft.world.item.context.BlockPlaceContext(context).getClickedPos(); |
185 |
| -+ net.minecraft.world.level.block.state.BlockState blockData = serverLevel.getBlockState(position); |
186 |
| -+ net.minecraft.world.level.block.SoundType soundeffecttype = blockData.getSoundType(); |
| 184 | ++ BlockPos pos = new net.minecraft.world.item.context.BlockPlaceContext(context).getClickedPos(); |
| 185 | ++ net.minecraft.world.level.block.state.BlockState state = serverLevel.getBlockState(pos); |
| 186 | ++ net.minecraft.world.level.block.SoundType soundType = state.getSoundType(); |
187 | 187 | + // Paper end - Fix spigot sound playing for BlockItem ItemStacks
|
188 |
| -+ serverLevel.playSound(player, clickedPos, soundeffecttype.getPlaceSound(), net.minecraft.sounds.SoundSource.BLOCKS, (soundeffecttype.getVolume() + 1.0F) / 2.0F, soundeffecttype.getPitch() * 0.8F); |
| 188 | ++ serverLevel.playSound(player, clickedPos, soundType.getPlaceSound(), net.minecraft.sounds.SoundSource.BLOCKS, (soundType.getVolume() + 1.0F) / 2.0F, soundType.getPitch() * 0.8F); |
189 | 189 | + }
|
190 | 190 | +
|
191 | 191 | + player.awardStat(Stats.ITEM_USED.get(item));
|
|
0 commit comments