ConcretePowder: fix CS

This commit is contained in:
Dylan K. Taylor
2022-09-29 21:50:15 +01:00
parent 1366a43c22
commit 0edf2ea6a4

View File

@ -54,7 +54,7 @@ class ConcretePowder extends Opaque implements Fallable{
}
public function tickFalling() : ?Block{
if ($this->getAdjacentWater() === null) {
if($this->getAdjacentWater() === null){
return null;
}
return VanillaBlocks::CONCRETE()->setColor($this->color);