pocketmine\entity\Rabbit::getRandomRabbitType PHP Method

getRandomRabbitType() public method

public getRandomRabbitType ( ) : integer
return integer
    public function getRandomRabbitType() : int
    {
        $arr = [0, 1, 2, 3, 4, 5, 99];
        return $arr[mt_rand(0, count($arr) - 1)];
    }