Fixed Furnace not implementing HorizontalFacing

looks like this was missed in #6639
I checked all other uses of HorizontalFacingTrait and FacesOppositePlacingPlayerTrait and this seems to be the only one.
This commit is contained in:
Dylan K. Taylor 2025-08-20 00:58:57 +01:00
parent 547544b5b4
commit 2bb78f2a94
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -25,6 +25,7 @@ namespace pocketmine\block;
use pocketmine\block\tile\Furnace as TileFurnace; use pocketmine\block\tile\Furnace as TileFurnace;
use pocketmine\block\utils\FacesOppositePlacingPlayerTrait; use pocketmine\block\utils\FacesOppositePlacingPlayerTrait;
use pocketmine\block\utils\HorizontalFacing;
use pocketmine\block\utils\Lightable; use pocketmine\block\utils\Lightable;
use pocketmine\block\utils\LightableTrait; use pocketmine\block\utils\LightableTrait;
use pocketmine\crafting\FurnaceType; use pocketmine\crafting\FurnaceType;
@ -34,7 +35,7 @@ use pocketmine\math\Vector3;
use pocketmine\player\Player; use pocketmine\player\Player;
use function mt_rand; use function mt_rand;
class Furnace extends Opaque implements Lightable{ class Furnace extends Opaque implements Lightable, HorizontalFacing{
use FacesOppositePlacingPlayerTrait; use FacesOppositePlacingPlayerTrait;
use LightableTrait; use LightableTrait;