mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
176 lines
8.7 KiB
Diff
176 lines
8.7 KiB
Diff
--- a/net/minecraft/server/BlockCauldron.java
|
|
+++ b/net/minecraft/server/BlockCauldron.java
|
|
@@ -1,5 +1,7 @@
|
|
package net.minecraft.server;
|
|
|
|
+import org.bukkit.event.block.CauldronLevelChangeEvent; // CraftBukkit
|
|
+
|
|
public class BlockCauldron extends Block {
|
|
|
|
public static final BlockStateInteger LEVEL = BlockProperties.al;
|
|
@@ -32,8 +34,13 @@
|
|
float f = (float) blockposition.getY() + (6.0F + (float) (3 * i)) / 16.0F;
|
|
|
|
if (!world.isClientSide && entity.isBurning() && i > 0 && entity.getBoundingBox().minY <= (double) f) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.changeLevel(world, blockposition, iblockdata, i - 1, entity, CauldronLevelChangeEvent.ChangeReason.EXTINGUISH)) {
|
|
+ return;
|
|
+ }
|
|
entity.extinguish();
|
|
- this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
}
|
|
@@ -50,18 +57,27 @@
|
|
|
|
if (item == Items.WATER_BUCKET) {
|
|
if (i < 3 && !world.isClientSide) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.changeLevel(world, blockposition, iblockdata, 3, entityhuman, CauldronLevelChangeEvent.ChangeReason.BUCKET_EMPTY)) {
|
|
+ return true;
|
|
+ }
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
entityhuman.a(enumhand, new ItemStack(Items.BUCKET));
|
|
}
|
|
|
|
entityhuman.a(StatisticList.FILL_CAULDRON);
|
|
- this.a(world, blockposition, iblockdata, 3);
|
|
+ // this.a(world, blockposition, iblockdata, 3);
|
|
+ // CraftBukkit end
|
|
world.a((EntityHuman) null, blockposition, SoundEffects.ITEM_BUCKET_EMPTY, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
}
|
|
|
|
return true;
|
|
} else if (item == Items.BUCKET) {
|
|
if (i == 3 && !world.isClientSide) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.changeLevel(world, blockposition, iblockdata, 0, entityhuman, CauldronLevelChangeEvent.ChangeReason.BUCKET_FILL)) {
|
|
+ return true;
|
|
+ }
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
itemstack.subtract(1);
|
|
if (itemstack.isEmpty()) {
|
|
@@ -72,7 +88,8 @@
|
|
}
|
|
|
|
entityhuman.a(StatisticList.USE_CAULDRON);
|
|
- this.a(world, blockposition, iblockdata, 0);
|
|
+ // this.a(world, blockposition, iblockdata, 0);
|
|
+ // CraftBukkit end
|
|
world.a((EntityHuman) null, blockposition, SoundEffects.ITEM_BUCKET_FILL, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
}
|
|
|
|
@@ -82,6 +99,10 @@
|
|
|
|
if (item == Items.GLASS_BOTTLE) {
|
|
if (i > 0 && !world.isClientSide) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.changeLevel(world, blockposition, iblockdata, i - 1, entityhuman, CauldronLevelChangeEvent.ChangeReason.BOTTLE_FILL)) {
|
|
+ return true;
|
|
+ }
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
itemstack1 = PotionUtil.a(new ItemStack(Items.POTION), Potions.b);
|
|
entityhuman.a(StatisticList.USE_CAULDRON);
|
|
@@ -96,12 +117,17 @@
|
|
}
|
|
|
|
world.a((EntityHuman) null, blockposition, SoundEffects.ITEM_BOTTLE_FILL, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
- this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
return true;
|
|
} else if (item == Items.POTION && PotionUtil.d(itemstack) == Potions.b) {
|
|
if (i < 3 && !world.isClientSide) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.changeLevel(world, blockposition, iblockdata, i + 1, entityhuman, CauldronLevelChangeEvent.ChangeReason.BOTTLE_EMPTY)) {
|
|
+ return true;
|
|
+ }
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
itemstack1 = new ItemStack(Items.GLASS_BOTTLE);
|
|
entityhuman.a(StatisticList.USE_CAULDRON);
|
|
@@ -112,7 +138,8 @@
|
|
}
|
|
|
|
world.a((EntityHuman) null, blockposition, SoundEffects.ITEM_BOTTLE_EMPTY, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
- this.a(world, blockposition, iblockdata, i + 1);
|
|
+ // this.a(world, blockposition, iblockdata, i + 1);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
return true;
|
|
@@ -121,8 +148,13 @@
|
|
IDyeable idyeable = (IDyeable) item;
|
|
|
|
if (idyeable.a(itemstack) && !world.isClientSide) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.changeLevel(world, blockposition, iblockdata, i - 1, entityhuman, CauldronLevelChangeEvent.ChangeReason.ARMOR_WASH)) {
|
|
+ return true;
|
|
+ }
|
|
idyeable.c(itemstack);
|
|
- this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // CraftBukkit end
|
|
entityhuman.a(StatisticList.CLEAN_ARMOR);
|
|
return true;
|
|
}
|
|
@@ -130,13 +162,18 @@
|
|
|
|
if (i > 0 && item instanceof ItemBanner) {
|
|
if (TileEntityBanner.a(itemstack) > 0 && !world.isClientSide) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.changeLevel(world, blockposition, iblockdata, i - 1, entityhuman, CauldronLevelChangeEvent.ChangeReason.BANNER_WASH)) {
|
|
+ return true;
|
|
+ }
|
|
itemstack1 = itemstack.cloneItemStack();
|
|
itemstack1.setCount(1);
|
|
TileEntityBanner.b(itemstack1);
|
|
entityhuman.a(StatisticList.CLEAN_BANNER);
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
itemstack.subtract(1);
|
|
- this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // this.a(world, blockposition, iblockdata, i - 1);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
if (itemstack.isEmpty()) {
|
|
@@ -173,9 +210,25 @@
|
|
}
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
public void a(World world, BlockPosition blockposition, IBlockData iblockdata, int i) {
|
|
- world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockCauldron.LEVEL, MathHelper.clamp(i, 0, 3)), 2);
|
|
+ this.changeLevel(world, blockposition, iblockdata, i, null, CauldronLevelChangeEvent.ChangeReason.UNKNOWN);
|
|
+ }
|
|
+
|
|
+ private boolean changeLevel(World world, BlockPosition blockposition, IBlockData iblockdata, int i, Entity entity, CauldronLevelChangeEvent.ChangeReason reason) {
|
|
+ int newLevel = Integer.valueOf(MathHelper.clamp(i, 0, 3));
|
|
+ CauldronLevelChangeEvent event = new CauldronLevelChangeEvent(
|
|
+ world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()),
|
|
+ (entity == null) ? null : entity.getBukkitEntity(), reason, iblockdata.get(BlockCauldron.LEVEL), newLevel
|
|
+ );
|
|
+ world.getServer().getPluginManager().callEvent(event);
|
|
+ if (event.isCancelled()) {
|
|
+ return false;
|
|
+ }
|
|
+ world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockCauldron.LEVEL, event.getNewLevel()), 2);
|
|
world.updateAdjacentComparators(blockposition, this);
|
|
+ return true;
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
@Override
|
|
@@ -187,7 +240,7 @@
|
|
IBlockData iblockdata = world.getType(blockposition);
|
|
|
|
if ((Integer) iblockdata.get(BlockCauldron.LEVEL) < 3) {
|
|
- world.setTypeAndData(blockposition, (IBlockData) iblockdata.a((IBlockState) BlockCauldron.LEVEL), 2);
|
|
+ this.a(world, blockposition, (IBlockData) iblockdata.a((IBlockState) BlockCauldron.LEVEL), 2); // CraftBukkit
|
|
}
|
|
|
|
}
|