This commit is contained in:
Michael Yoo 2013-10-19 11:47:53 +10:30
parent 0ad0071107
commit 9ac72026b9

View File

@ -24,4 +24,9 @@ class WoodStairsBlock extends StairBlock{
parent::__construct(WOOD_STAIRS, $meta, "Wood Stairs"); parent::__construct(WOOD_STAIRS, $meta, "Wood Stairs");
} }
public function getDrops(Item $item, Player $player){
return array(
array($this->id, 0, 1),
);
}
} }