SPIGOT-4962: Bubble column blocks not classified as liquid

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-05-20 19:27:02 +10:00
parent 20c4ae9b42
commit d8a6d9eb41

View file

@ -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