From c6670b2e741ea65fe1457170025c7188e9567471 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 21 Sep 2017 16:56:41 +0100 Subject: [PATCH] Fixed Nether Wart's name --- src/pocketmine/block/NetherWartPlant.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pocketmine/block/NetherWartPlant.php b/src/pocketmine/block/NetherWartPlant.php index ab2e880908..646da453d9 100644 --- a/src/pocketmine/block/NetherWartPlant.php +++ b/src/pocketmine/block/NetherWartPlant.php @@ -40,6 +40,10 @@ class NetherWartPlant extends Flowable{ $this->meta = $meta; } + public function getName() : string{ + return "Nether Wart"; + } + public function ticksRandomly() : bool{ return true; }