diff --git a/src/item/LiquidBucket.php b/src/item/LiquidBucket.php index 095de1734..69e3e0ef3 100644 --- a/src/item/LiquidBucket.php +++ b/src/item/LiquidBucket.php @@ -74,4 +74,11 @@ class LiquidBucket extends Item{ return ItemUseResult::FAIL(); } + + /** + * @return Liquid + */ + public function getLiquid() : Liquid{ + return $this->liquid; + } }