From 9d26a224a263e05587f33320fe557b97660f14a2 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 31 May 2020 17:04:50 +0100 Subject: [PATCH] DoublePlant: add flammability info, closes #2465 --- src/pocketmine/block/DoublePlant.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pocketmine/block/DoublePlant.php b/src/pocketmine/block/DoublePlant.php index ccb8c1cbd..57b1c43b9 100644 --- a/src/pocketmine/block/DoublePlant.php +++ b/src/pocketmine/block/DoublePlant.php @@ -124,4 +124,12 @@ class DoublePlant extends Flowable{ return parent::getAffectedBlocks(); } + + public function getFlameEncouragement() : int{ + return 60; + } + + public function getFlammability() : int{ + return 100; + } }