WoodenDoor can be a fuel (#6101)

This commit is contained in:
Hugo_ 2023-10-17 23:10:08 +02:00 committed by GitHub
parent c14eb63f9b
commit 7b5c30bc2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,4 +27,8 @@ use pocketmine\block\utils\WoodTypeTrait;
class WoodenDoor extends Door{
use WoodTypeTrait;
public function getFuelTime() : int{
return $this->woodType->isFlammable() ? 200 : 0;
}
}