ConcretePowder: fix CS

This commit is contained in:
Dylan K. Taylor 2022-09-29 21:50:15 +01:00
parent 1366a43c22
commit 0edf2ea6a4
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

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);