Fix #145, take 2 (slab placement in half gaps doesn't work) (#1411)

This commit is contained in:
Dylan K. Taylor
2017-10-01 16:19:59 +01:00
committed by GitHub
parent b3b3ee7c56
commit c09d782503
3 changed files with 19 additions and 6 deletions

View File

@ -160,6 +160,10 @@ class Block extends Position implements BlockIds, Metadatable{
return false;
}
public function canBePlacedAt(Block $blockReplace, Vector3 $clickVector) : bool{
return $blockReplace->canBeReplaced();
}
/**
* Places the Block, using block space and block target, and side. Returns if the block has been placed.
*