mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
Don't use event to get block position (#9295)
This commit is contained in:
parent
120345dea6
commit
eb317edc8a
@ -14,7 +14,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
if (this.item instanceof BlockItem) {
|
if (this.item instanceof BlockItem) {
|
||||||
- SoundType soundeffecttype = ((BlockItem) this.item).getBlock().getSoundType(null);
|
- SoundType soundeffecttype = ((BlockItem) this.item).getBlock().getSoundType(null);
|
||||||
+ // Paper start
|
+ // Paper start
|
||||||
+ BlockPos position = ((CraftBlock) placeEvent.getBlock()).getPosition();
|
+ BlockPos position = new net.minecraft.world.item.context.BlockPlaceContext(itemactioncontext).getClickedPos();
|
||||||
+ net.minecraft.world.level.block.state.BlockState blockData = world.getBlockState(position);
|
+ net.minecraft.world.level.block.state.BlockState blockData = world.getBlockState(position);
|
||||||
+ SoundType soundeffecttype = blockData.getSoundType();
|
+ SoundType soundeffecttype = blockData.getSoundType();
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
|
Loading…
Reference in New Issue
Block a user