This commit is contained in:
Dylan K. Taylor 2025-08-25 02:16:38 +01:00
parent 4a2c7dc684
commit c548923116
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -106,7 +106,7 @@ abstract class BaseSign extends Transparent implements WoodMaterial{
abstract protected function getSupportingFace() : int;
public function onNearbyBlockChange() : void{
if($this->getSide($this->getSupportingFace())->getTypeId() !== BlockTypeIds::AIR){
if($this->getSide($this->getSupportingFace())->getTypeId() === BlockTypeIds::AIR){
$this->position->getWorld()->useBreakOn($this->position);
}
}