pocketmine\Player::removeCreativeItem PHP Method

removeCreativeItem() public method

public removeCreativeItem ( Item $item )
$item pocketmine\item\Item
    public function removeCreativeItem(Item $item)
    {
        $index = $this->getCreativeItemIndex($item);
        if ($index !== -1) {
            unset($this->personalCreativeItems[$index]);
        }
    }
Player