From 7e43f3b1642c66bef8ca4f445e912979583d6d9c Mon Sep 17 00:00:00 2001 From: md_5 Date: Fri, 9 Feb 2024 19:00:25 +1100 Subject: [PATCH] SPIGOT-7581: Fix typo in BlockMushroom --- nms-patches/net/minecraft/world/level/block/BlockMushroom.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nms-patches/net/minecraft/world/level/block/BlockMushroom.patch b/nms-patches/net/minecraft/world/level/block/BlockMushroom.patch index bad8fd7e4..fc6d23338 100644 --- a/nms-patches/net/minecraft/world/level/block/BlockMushroom.patch +++ b/nms-patches/net/minecraft/world/level/block/BlockMushroom.patch @@ -24,7 +24,7 @@ return false; } else { worldserver.removeBlock(blockposition, false); -+ BlockSapling.treeType = (this == Blocks.BROWN_MUSHROOM) ? TreeType.BROWN_MUSHROOM : TreeType.BROWN_MUSHROOM; // CraftBukkit ++ BlockSapling.treeType = (this == Blocks.BROWN_MUSHROOM) ? TreeType.BROWN_MUSHROOM : TreeType.RED_MUSHROOM; // CraftBukkit if (((WorldGenFeatureConfigured) ((Holder) optional.get()).value()).place(worldserver, worldserver.getChunkSource().getGenerator(), randomsource, blockposition)) { return true; } else {