Place/Breaking/Activation logic separated from BlockAPI

This commit is contained in:
Shoghi Cervantes Pueyo
2013-02-03 18:55:59 +01:00
parent 6156baab85
commit d9c87161ba
37 changed files with 387 additions and 216 deletions

View File

@@ -30,5 +30,9 @@ class IronDoorBlock extends TransparentBlock{
parent::__construct(IRON_DOOR, $meta, "Iron Door");
$this->isActivable = true;
}
public function getDrops(Item $item, Player $player){
return array(
array(330, 0, 1),
);
}
}