SPIGOT-3286: Call BlockFormEvent for Concrete Powder -> Concrete

This commit is contained in:
md_5
2017-06-03 17:39:03 +10:00
parent 921ba53556
commit 701b06494d
7 changed files with 32 additions and 9 deletions

View File

@@ -33,7 +33,7 @@
- world.setTypeUpdate(blockposition.down(), Blocks.STONE.getBlockData());
- this.fizz(world, blockposition.down());
+ // CraftBukkit start
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(world, blockposition.down(), Blocks.STONE, null)) {
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(world, blockposition.down(), Blocks.STONE.getBlockData(), null)) {
+ this.fizz(world, blockposition.down());
+ }
+ // CraftBukkit end