Fixed concrete powder not falling

This commit is contained in:
Dylan K. Taylor 2018-03-16 16:43:47 +00:00
parent 9c786089f8
commit eeeef8df51

View File

@ -48,6 +48,8 @@ class ConcretePowder extends Fallable{
public function onNearbyBlockChange() : void{ public function onNearbyBlockChange() : void{
if(($block = $this->checkAdjacentWater()) !== null){ if(($block = $this->checkAdjacentWater()) !== null){
$this->level->setBlock($this, $block); $this->level->setBlock($this, $block);
}else{
parent::onNearbyBlockChange();
} }
} }