mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
62 lines
3.3 KiB
Diff
62 lines
3.3 KiB
Diff
--- a/net/minecraft/server/BlockChorusFlower.java
|
|
+++ b/net/minecraft/server/BlockChorusFlower.java
|
|
@@ -4,6 +4,8 @@
|
|
import java.util.Random;
|
|
import javax.annotation.Nullable;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
+
|
|
public class BlockChorusFlower extends Block {
|
|
|
|
public static final BlockStateInteger AGE = BlockProperties.ab;
|
|
@@ -58,8 +60,12 @@
|
|
}
|
|
|
|
if (flag && b((IWorldReader) world, blockposition1, (EnumDirection) null) && world.isEmpty(blockposition.up(2))) {
|
|
- world.setTypeAndData(blockposition, this.b.a((IBlockAccess) world, blockposition), 2);
|
|
- this.b(world, blockposition1, i);
|
|
+ // CraftBukkit start - add event
|
|
+ if (CraftEventFactory.handleBlockSpreadEvent(world, blockposition, blockposition1, this.getBlockData().set(BlockChorusFlower.AGE, Integer.valueOf(i)), 2)) {
|
|
+ world.setTypeAndData(blockposition, this.b.a((IBlockAccess) world, blockposition), 2);
|
|
+ this.b(world, blockposition1, i);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
} else if (i < 4) {
|
|
j = random.nextInt(4);
|
|
if (flag1) {
|
|
@@ -73,18 +79,30 @@
|
|
BlockPosition blockposition2 = blockposition.shift(enumdirection);
|
|
|
|
if (world.isEmpty(blockposition2) && world.isEmpty(blockposition2.down()) && b((IWorldReader) world, blockposition2, enumdirection.opposite())) {
|
|
- this.b(world, blockposition2, i + 1);
|
|
- flag2 = true;
|
|
+ // CraftBukkit start - add event
|
|
+ if (CraftEventFactory.handleBlockSpreadEvent(world, blockposition, blockposition2, this.getBlockData().set(BlockChorusFlower.AGE, Integer.valueOf(i + 1)), 2)) {
|
|
+ this.b(world, blockposition2, i + 1);
|
|
+ flag2 = true;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
|
|
if (flag2) {
|
|
world.setTypeAndData(blockposition, this.b.a((IBlockAccess) world, blockposition), 2);
|
|
} else {
|
|
- this.a(world, blockposition);
|
|
+ // CraftBukkit - add event
|
|
+ if (CraftEventFactory.handleBlockGrowEvent(world, blockposition, this.getBlockData().set(BlockChorusFlower.AGE, Integer.valueOf(5)), 2)) {
|
|
+ this.a(world, blockposition);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
} else {
|
|
- this.a(world, blockposition);
|
|
+ // CraftBukkit - add event
|
|
+ if (CraftEventFactory.handleBlockGrowEvent(world, blockposition, this.getBlockData().set(BlockChorusFlower.AGE, Integer.valueOf(5)), 2)) {
|
|
+ this.a(world, blockposition);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
}
|