mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
9da047989c
By: md_5 <git@md-5.net>
16 lines
722 B
Diff
16 lines
722 B
Diff
--- a/net/minecraft/world/level/block/BlockFungi.java
|
|
+++ b/net/minecraft/world/level/block/BlockFungi.java
|
|
@@ -50,6 +50,13 @@
|
|
|
|
@Override
|
|
public void a(WorldServer worldserver, Random random, BlockPosition blockposition, IBlockData iblockdata) {
|
|
+ // CraftBukkit start
|
|
+ if (this == Blocks.WARPED_FUNGUS) {
|
|
+ BlockSapling.treeType = org.bukkit.TreeType.WARPED_FUNGUS;
|
|
+ } else if (this == Blocks.CRIMSON_FUNGUS) {
|
|
+ BlockSapling.treeType = org.bukkit.TreeType.CRIMSON_FUNGUS;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
((WorldGenFeatureConfigured) this.b.get()).a(worldserver, worldserver.getChunkProvider().getChunkGenerator(), random, blockposition);
|
|
}
|
|
}
|