diff --git a/src/item/Potion.php b/src/item/Potion.php index 13fc8640a..5b2bbc17e 100644 --- a/src/item/Potion.php +++ b/src/item/Potion.php @@ -34,6 +34,8 @@ class Potion extends Item implements ConsumableItem{ $this->potionType = $potionType; } + public function getType() : PotionType{ return $this->potionType; } + public function getMaxStackSize() : int{ return 1; }