mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
107 lines
4.9 KiB
Diff
107 lines
4.9 KiB
Diff
--- a/net/minecraft/server/BlockRedstoneOre.java
|
|
+++ b/net/minecraft/server/BlockRedstoneOre.java
|
|
@@ -2,6 +2,11 @@
|
|
|
|
import java.util.Random;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+import org.bukkit.event.entity.EntityInteractEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class BlockRedstoneOre extends Block {
|
|
|
|
public static final BlockStateBoolean a = BlockRedstoneTorch.LIT;
|
|
@@ -18,25 +23,46 @@
|
|
|
|
@Override
|
|
public void attack(IBlockData iblockdata, World world, BlockPosition blockposition, EntityHuman entityhuman) {
|
|
- interact(iblockdata, world, blockposition);
|
|
+ interact(iblockdata, world, blockposition, entityhuman); // CraftBukkit - add entityhuman
|
|
super.attack(iblockdata, world, blockposition, entityhuman);
|
|
}
|
|
|
|
@Override
|
|
public void stepOn(World world, BlockPosition blockposition, Entity entity) {
|
|
- interact(world.getType(blockposition), world, blockposition);
|
|
- super.stepOn(world, blockposition, entity);
|
|
+ // CraftBukkit start
|
|
+ // interact(world.getType(blockposition), world, blockposition);
|
|
+ // super.stepOn(world, blockposition, entity);
|
|
+ if (entity instanceof EntityHuman) {
|
|
+ org.bukkit.event.player.PlayerInteractEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerInteractEvent((EntityHuman) entity, org.bukkit.event.block.Action.PHYSICAL, blockposition, null, null, null);
|
|
+ if (!event.isCancelled()) {
|
|
+ interact(world.getType(blockposition), world, blockposition, entity); // add entity
|
|
+ super.stepOn(world, blockposition, entity);
|
|
+ }
|
|
+ } else {
|
|
+ EntityInteractEvent event = new EntityInteractEvent(entity.getBukkitEntity(), world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()));
|
|
+ world.getServer().getPluginManager().callEvent(event);
|
|
+ if (!event.isCancelled()) {
|
|
+ interact(world.getType(blockposition), world, blockposition, entity); // add entity
|
|
+ super.stepOn(world, blockposition, entity);
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
@Override
|
|
public boolean interact(IBlockData iblockdata, World world, BlockPosition blockposition, EntityHuman entityhuman, EnumHand enumhand, MovingObjectPositionBlock movingobjectpositionblock) {
|
|
- interact(iblockdata, world, blockposition);
|
|
+ interact(iblockdata, world, blockposition, entityhuman); // CraftBukkit - add entityhuman
|
|
return super.interact(iblockdata, world, blockposition, entityhuman, enumhand, movingobjectpositionblock);
|
|
}
|
|
|
|
- private static void interact(IBlockData iblockdata, World world, BlockPosition blockposition) {
|
|
+ private static void interact(IBlockData iblockdata, World world, BlockPosition blockposition, Entity entity) { // CraftBukkit - add Entity
|
|
playEffect(world, blockposition);
|
|
if (!(Boolean) iblockdata.get(BlockRedstoneOre.a)) {
|
|
+ // CraftBukkit start
|
|
+ if (CraftEventFactory.callEntityChangeBlockEvent(entity, blockposition, iblockdata.set(BlockRedstoneOre.a, true)).isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockRedstoneOre.a, true), 3);
|
|
}
|
|
|
|
@@ -45,6 +71,11 @@
|
|
@Override
|
|
public void tick(IBlockData iblockdata, World world, BlockPosition blockposition, Random random) {
|
|
if ((Boolean) iblockdata.get(BlockRedstoneOre.a)) {
|
|
+ // CraftBukkit start
|
|
+ if (CraftEventFactory.callBlockFadeEvent(world, blockposition, iblockdata.set(BlockRedstoneOre.a, false)).isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockRedstoneOre.a, false), 3);
|
|
}
|
|
|
|
@@ -53,14 +84,27 @@
|
|
@Override
|
|
public void dropNaturally(IBlockData iblockdata, World world, BlockPosition blockposition, ItemStack itemstack) {
|
|
super.dropNaturally(iblockdata, world, blockposition, itemstack);
|
|
+ /* CraftBukkit start - Delegated to getExpDrop
|
|
if (EnchantmentManager.getEnchantmentLevel(Enchantments.SILK_TOUCH, itemstack) == 0) {
|
|
int i = 1 + world.random.nextInt(5);
|
|
|
|
this.dropExperience(world, blockposition, i);
|
|
}
|
|
+ // */
|
|
|
|
}
|
|
|
|
+ @Override
|
|
+ public int getExpDrop(IBlockData iblockdata, World world, BlockPosition blockposition, ItemStack itemstack) {
|
|
+ if (EnchantmentManager.getEnchantmentLevel(Enchantments.SILK_TOUCH, itemstack) == 0) {
|
|
+ int i = 1 + world.random.nextInt(5);
|
|
+
|
|
+ return i;
|
|
+ }
|
|
+ return 0;
|
|
+ // CraftBukkit end
|
|
+ }
|
|
+
|
|
private static void playEffect(World world, BlockPosition blockposition) {
|
|
double d0 = 0.5625D;
|
|
Random random = world.random;
|