2023-06-09 02:24:02 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
|
|
Date: Thu, 8 Jun 2023 20:23:13 -0400
|
|
|
|
Subject: [PATCH] Fix spigot sound playing for BlockItem ItemStacks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/item/ItemStack.java b/src/main/java/net/minecraft/world/item/ItemStack.java
|
2023-12-06 19:07:47 +01:00
|
|
|
index 11173571f3589d4301a2528db96718c0fd81efed..e1de186632baa6ee58a071aabf8967b9095f9aa1 100644
|
2023-06-09 02:24:02 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/item/ItemStack.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/item/ItemStack.java
|
2023-12-06 17:21:56 +01:00
|
|
|
@@ -544,7 +544,11 @@ public final class ItemStack {
|
2023-06-09 02:24:02 +02:00
|
|
|
|
|
|
|
// SPIGOT-1288 - play sound stripped from ItemBlock
|
|
|
|
if (this.item instanceof BlockItem) {
|
2023-06-16 12:28:31 +02:00
|
|
|
- SoundType soundeffecttype = ((BlockItem) this.item).getBlock().defaultBlockState().getSoundType(); // TODO: not strictly correct, however currently only affects decorated pots
|
2023-06-09 02:24:02 +02:00
|
|
|
+ // Paper start
|
2023-07-04 10:22:56 +02:00
|
|
|
+ BlockPos position = new net.minecraft.world.item.context.BlockPlaceContext(context).getClickedPos();
|
2023-06-10 08:13:42 +02:00
|
|
|
+ net.minecraft.world.level.block.state.BlockState blockData = world.getBlockState(position);
|
2023-06-09 02:24:02 +02:00
|
|
|
+ SoundType soundeffecttype = blockData.getSoundType();
|
|
|
|
+ // Paper end
|
|
|
|
world.playSound(entityhuman, blockposition, soundeffecttype.getPlaceSound(), SoundSource.BLOCKS, (soundeffecttype.getVolume() + 1.0F) / 2.0F, soundeffecttype.getPitch() * 0.8F);
|
|
|
|
}
|
|
|
|
|