Consistently declare BlockBreakInfo at the constructor call site

instead of inside the class
This commit is contained in:
Dylan K. Taylor
2021-05-20 22:49:51 +01:00
parent 8b4aa36e16
commit 376d2c4cd4
121 changed files with 267 additions and 657 deletions

View File

@ -25,13 +25,12 @@ namespace pocketmine\block;
use pocketmine\block\utils\ColorInMetadataTrait;
use pocketmine\block\utils\DyeColor;
use pocketmine\item\ToolTier;
class Concrete extends Opaque{
use ColorInMetadataTrait;
public function __construct(BlockIdentifier $idInfo, string $name, ?BlockBreakInfo $breakInfo = null){
public function __construct(BlockIdentifier $idInfo, string $name, BlockBreakInfo $breakInfo){
$this->color = DyeColor::WHITE();
parent::__construct($idInfo, $name, $breakInfo ?? new BlockBreakInfo(1.8, BlockToolType::PICKAXE, ToolTier::WOOD()->getHarvestLevel()));
parent::__construct($idInfo, $name, $breakInfo);
}
}