Added netherite blocks and items

This commit is contained in:
Dylan K. Taylor
2022-07-14 20:39:09 +01:00
parent d4f4fda442
commit ba2baba7cc
17 changed files with 119 additions and 19 deletions

View File

@ -63,6 +63,10 @@ final class ItemBlock extends Item{
return $this->getBlock()->getFuelTime();
}
public function isFireProof() : bool{
return $this->getBlock()->isFireProofAsItem();
}
public function getMaxStackSize() : int{
return $this->getBlock()->getMaxStackSize();
}