Merge branch 'stable' into minor-next

This commit is contained in:
Dylan K. Taylor
2023-10-24 11:56:51 +01:00
17 changed files with 182 additions and 88 deletions

View File

@ -271,4 +271,8 @@ abstract class BaseSign extends Transparent{
public function asItem() : Item{
return ($this->asItemCallback)();
}
public function getFuelTime() : int{
return $this->woodType->isFlammable() ? 200 : 0;
}
}