pocketmine\item\Potion::getEffects PHP 메소드

getEffects() 공개 메소드

public getEffects ( ) : array
리턴 array
    public function getEffects() : array
    {
        return self::getEffectsById($this->meta);
    }

Usage Example

예제 #1
0
 public function __construct(Entity $entity, Potion $potion)
 {
     $this->entity = $entity;
     $this->potion = $potion;
     $this->effects = $potion->getEffects();
 }