Fix for crashes via item (MCPE-1198)

This commit is contained in:
Shoghi Cervantes Pueyo
2013-02-04 15:02:21 +01:00
parent 3578b90a39
commit f1c593d809
4 changed files with 6 additions and 18 deletions

View File

@@ -32,7 +32,7 @@ class Item{
);
protected $block = false;
protected $block;
protected $id;
protected $meta;
protected $count;
@@ -45,7 +45,7 @@ class Item{
$this->meta = (int) $meta;
$this->count = (int) $count;
$this->name = $name;
if(isset(Block::$class[$this->id])){
if(!isset($this->block) and isset(Block::$class[$this->id])){
$this->block = BlockAPI::get($this->id, $this->meta);
$this->name = $this->block->getName();
}