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

@@ -200,6 +200,10 @@ class ItemEntity extends Entity{
return $this->item;
}
public function isFireProof() : bool{
return $this->item->isFireProof();
}
public function canCollideWith(Entity $entity) : bool{
return false;
}