mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
SPIGOT-4962: Bubble column blocks not classified as liquid
By: md_5 <git@md-5.net>
This commit is contained in:
parent
20c4ae9b42
commit
d8a6d9eb41
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ public class CraftBlock implements Block {
|
|||
|
||||
@Override
|
||||
public boolean isLiquid() {
|
||||
return (getType() == Material.WATER) || (getType() == Material.LAVA);
|
||||
return getNMS().getMaterial().isLiquid();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue