mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 18:27:41 +01:00
b3a8254758
By: md_5 <git@md-5.net>
17 lines
728 B
Diff
17 lines
728 B
Diff
--- a/net/minecraft/world/level/block/BlockFungi.java
|
|
+++ b/net/minecraft/world/level/block/BlockFungi.java
|
|
@@ -51,6 +51,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.feature.get()).a(worldserver, worldserver.getChunkProvider().getChunkGenerator(), random, blockposition);
|
|
}
|
|
}
|