mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
/net/minecraft/core/cauldron/CauldronInteraction fix
This commit is contained in:
parent
fa792cf719
commit
c8d3ed4430
1 changed files with 2 additions and 3 deletions
|
@ -45,13 +45,12 @@
|
||||||
state,
|
state,
|
||||||
level,
|
level,
|
||||||
pos,
|
pos,
|
||||||
@@ -84,33 +_,44 @@
|
@@ -84,33 +_,43 @@
|
||||||
stack,
|
stack,
|
||||||
new ItemStack(Items.WATER_BUCKET),
|
new ItemStack(Items.WATER_BUCKET),
|
||||||
blockState -> blockState.getValue(LayeredCauldronBlock.LEVEL) == 3,
|
blockState -> blockState.getValue(LayeredCauldronBlock.LEVEL) == 3,
|
||||||
- SoundEvents.BUCKET_FILL
|
- SoundEvents.BUCKET_FILL
|
||||||
+ SoundEvents.BUCKET_FILL,
|
+ SoundEvents.BUCKET_FILL, hitDirection // Paper - add hitDirection
|
||||||
+ hitDirection
|
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
- map1.put(Items.GLASS_BOTTLE, (state, level, pos, player, hand, stack) -> {
|
- map1.put(Items.GLASS_BOTTLE, (state, level, pos, player, hand, stack) -> {
|
||||||
|
|
Loading…
Reference in a new issue