WoodenStairs can be a fuel (#6345)

This commit is contained in:
Hugo_ 2024-05-13 10:34:18 +02:00 committed by GitHub
parent 5ef247620a
commit f772bb7384
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,6 +28,10 @@ use pocketmine\block\utils\WoodTypeTrait;
class WoodenStairs extends Stair{
use WoodTypeTrait;
public function getFuelTime() : int{
return $this->woodType->isFlammable() ? 300 : 0;
}
public function getFlameEncouragement() : int{
return 5;
}