mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
--- a/net/minecraft/server/BlockMushroom.java
|
|
+++ b/net/minecraft/server/BlockMushroom.java
|
|
@@ -3,6 +3,10 @@
|
|
import java.util.Iterator;
|
|
import java.util.Random;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.TreeType;
|
|
+// CraftBukkit end
|
|
+
|
|
public class BlockMushroom extends BlockPlant implements IBlockFragilePlantElement {
|
|
|
|
protected static final VoxelShape a = Block.a(5.0D, 0.0D, 5.0D, 11.0D, 6.0D, 11.0D);
|
|
@@ -45,7 +49,7 @@
|
|
}
|
|
|
|
if (world.isEmpty(blockposition2) && iblockdata.canPlace(world, blockposition2)) {
|
|
- world.setTypeAndData(blockposition2, iblockdata, 2);
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(world, blockposition, blockposition2, iblockdata, 2); // CraftBukkit
|
|
}
|
|
}
|
|
|
|
@@ -70,8 +74,10 @@
|
|
WorldGenerator<WorldGenFeatureEmptyConfiguration> worldgenerator = null;
|
|
|
|
if (this == Blocks.BROWN_MUSHROOM) {
|
|
+ BlockSapling.treeType = TreeType.BROWN_MUSHROOM; // CraftBukkit
|
|
worldgenerator = WorldGenerator.HUGE_BROWN_MUSHROOM;
|
|
} else if (this == Blocks.RED_MUSHROOM) {
|
|
+ BlockSapling.treeType = TreeType.RED_MUSHROOM; // CraftBukkit
|
|
worldgenerator = WorldGenerator.HUGE_RED_MUSHROOM;
|
|
}
|
|
|