mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2024-11-22 10:06:16 +00:00
17 lines
855 B
Diff
17 lines
855 B
Diff
--- a/net/minecraft/world/level/block/BlockFungi.java
|
|
+++ b/net/minecraft/world/level/block/BlockFungi.java
|
|
@@ -74,6 +74,13 @@
|
|
@Override
|
|
public void performBonemeal(WorldServer worldserver, RandomSource randomsource, BlockPosition blockposition, IBlockData iblockdata) {
|
|
this.getFeature(worldserver).ifPresent((holder) -> {
|
|
+ // 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) holder.value()).place(worldserver, worldserver.getChunkSource().getGenerator(), randomsource, blockposition);
|
|
});
|
|
}
|