2022-04-24 20:35:24 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Thu, 30 Dec 2021 14:02:13 -0800
|
|
|
|
Subject: [PATCH] fix powder snow cauldrons not turning to water
|
|
|
|
|
|
|
|
Powder snow cauldrons should turn to water when
|
|
|
|
extinguishing an entity
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/LayeredCauldronBlock.java b/src/main/java/net/minecraft/world/level/block/LayeredCauldronBlock.java
|
2024-10-23 23:12:09 +02:00
|
|
|
index 806d18689126d0a971665a33d7fc91102ec76db5..7dd6b7c0ea472cfbc7ece55bc64bc5d85be4a6c0 100644
|
2022-04-24 20:35:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/LayeredCauldronBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/LayeredCauldronBlock.java
|
2024-10-23 23:12:09 +02:00
|
|
|
@@ -73,7 +73,7 @@ public class LayeredCauldronBlock extends AbstractCauldronBlock {
|
|
|
|
// CraftBukkit start - moved down
|
|
|
|
// entity.clearFire();
|
|
|
|
if (entity.mayInteract(worldserver, pos)) {
|
|
|
|
- if (this.handleEntityOnFireInside(state, world, pos, entity)) {
|
|
|
|
+ if (this.handleEntityOnFireInsideWithEvent(state, world, pos, entity)) { // Paper - fix powdered snow cauldron extinguishing entities
|
|
|
|
entity.clearFire();
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
@@ -84,6 +84,7 @@ public class LayeredCauldronBlock extends AbstractCauldronBlock {
|
2022-04-24 20:35:24 +02:00
|
|
|
}
|
|
|
|
|
2024-10-23 23:12:09 +02:00
|
|
|
// CraftBukkit start
|
2024-02-01 10:15:57 +01:00
|
|
|
+ @io.papermc.paper.annotation.DoNotUse @Deprecated // Paper - fix powdered snow cauldron extinguishing entities; use #handleEntityOnFireInsideWithEvent
|
2024-10-23 23:12:09 +02:00
|
|
|
private boolean handleEntityOnFireInside(BlockState iblockdata, Level world, BlockPos blockposition, Entity entity) {
|
2023-12-06 17:21:56 +01:00
|
|
|
if (this.precipitationType == Biome.Precipitation.SNOW) {
|
2024-10-23 23:12:09 +02:00
|
|
|
return LayeredCauldronBlock.lowerFillLevel((BlockState) Blocks.WATER_CAULDRON.defaultBlockState().setValue(LayeredCauldronBlock.LEVEL, (Integer) iblockdata.getValue(LayeredCauldronBlock.LEVEL)), world, blockposition, entity, CauldronLevelChangeEvent.ChangeReason.EXTINGUISH);
|
|
|
|
@@ -93,6 +94,15 @@ public class LayeredCauldronBlock extends AbstractCauldronBlock {
|
2023-12-06 17:21:56 +01:00
|
|
|
}
|
|
|
|
|
2022-04-24 20:35:24 +02:00
|
|
|
}
|
2024-01-18 18:52:00 +01:00
|
|
|
+ // Paper start - fix powdered snow cauldron extinguishing entities
|
2022-04-24 20:35:24 +02:00
|
|
|
+ protected boolean handleEntityOnFireInsideWithEvent(BlockState state, Level world, BlockPos pos, Entity entity) {
|
2023-12-06 19:26:53 +01:00
|
|
|
+ if (this.precipitationType == Biome.Precipitation.SNOW) {
|
|
|
|
+ return LayeredCauldronBlock.lowerFillLevel((BlockState) Blocks.WATER_CAULDRON.defaultBlockState().setValue(LayeredCauldronBlock.LEVEL, (Integer) state.getValue(LayeredCauldronBlock.LEVEL)), world, pos, entity, CauldronLevelChangeEvent.ChangeReason.EXTINGUISH);
|
|
|
|
+ } else {
|
|
|
|
+ return LayeredCauldronBlock.lowerFillLevel(state, world, pos, entity, CauldronLevelChangeEvent.ChangeReason.EXTINGUISH);
|
|
|
|
+ }
|
2022-04-24 20:35:24 +02:00
|
|
|
+ }
|
2024-01-18 18:52:00 +01:00
|
|
|
+ // Paper end - fix powdered snow cauldron extinguishing entities
|
2022-04-24 20:35:24 +02:00
|
|
|
|
|
|
|
public static void lowerFillLevel(BlockState state, Level world, BlockPos pos) {
|
|
|
|
// CraftBukkit start
|