player = $who; $this->blockClicked = $blockClicked; $this->blockFace = (int) $blockFace; $this->item = $itemInHand; $this->bucket = $bucket; } /** * Returns the bucket used in this event * * @return Item */ public function getBucket(){ return $this->bucket; } /** * Returns the item in hand after the event * * @return Item */ public function getItem(){ return $this->item; } /** * @param Item $item */ public function setItem(Item $item){ $this->item = $item; } /** * @return Block */ public function getBlockClicked(){ return $this->blockClicked; } }