mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix some water plants not being waterlogged
This commit is contained in:
parent
29dacd2397
commit
9db1dd10d2
1 changed files with 2 additions and 1 deletions
|
@ -290,7 +290,8 @@ public final class BlockRegistryPopulator {
|
|||
}
|
||||
|
||||
boolean waterlogged = blockState.getValue(Properties.WATERLOGGED, false)
|
||||
|| block == Blocks.BUBBLE_COLUMN || block == Blocks.KELP || block == Blocks.SEAGRASS;
|
||||
|| block == Blocks.BUBBLE_COLUMN || block == Blocks.KELP || block == Blocks.KELP_PLANT
|
||||
|| block == Blocks.SEAGRASS || block == Blocks.TALL_SEAGRASS;
|
||||
|
||||
if (waterlogged) {
|
||||
BlockRegistries.WATERLOGGED.get().set(javaRuntimeId);
|
||||
|
|
Loading…
Reference in a new issue