mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 18:01:17 +01:00
30 lines
1.5 KiB
Diff
30 lines
1.5 KiB
Diff
--- a/net/minecraft/server/BlockDragonEgg.java
|
|
+++ b/net/minecraft/server/BlockDragonEgg.java
|
|
@@ -1,5 +1,7 @@
|
|
package net.minecraft.server;
|
|
|
|
+import org.bukkit.event.block.BlockFromToEvent; // CraftBukkit
|
|
+
|
|
public class BlockDragonEgg extends BlockFalling {
|
|
|
|
protected static final VoxelShape a = Block.a(1.0D, 0.0D, 1.0D, 15.0D, 16.0D, 15.0D);
|
|
@@ -26,6 +28,18 @@
|
|
BlockPosition blockposition1 = blockposition.a(world.random.nextInt(16) - world.random.nextInt(16), world.random.nextInt(8) - world.random.nextInt(8), world.random.nextInt(16) - world.random.nextInt(16));
|
|
|
|
if (world.getType(blockposition1).isAir()) {
|
|
+ // CraftBukkit start
|
|
+ org.bukkit.block.Block from = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
+ org.bukkit.block.Block to = world.getWorld().getBlockAt(blockposition1.getX(), blockposition1.getY(), blockposition1.getZ());
|
|
+ BlockFromToEvent event = new BlockFromToEvent(from, to);
|
|
+ org.bukkit.Bukkit.getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ blockposition1 = new BlockPosition(event.getToBlock().getX(), event.getToBlock().getY(), event.getToBlock().getZ());
|
|
+ // CraftBukkit end
|
|
if (world.isClientSide) {
|
|
for (int j = 0; j < 128; ++j) {
|
|
double d0 = world.random.nextDouble();
|