mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-08-23 03:41:24 +00:00
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:
parent
547544b5b4
commit
2bb78f2a94
@ -25,6 +25,7 @@ namespace pocketmine\block;
|
||||
|
||||
use pocketmine\block\tile\Furnace as TileFurnace;
|
||||
use pocketmine\block\utils\FacesOppositePlacingPlayerTrait;
|
||||
use pocketmine\block\utils\HorizontalFacing;
|
||||
use pocketmine\block\utils\Lightable;
|
||||
use pocketmine\block\utils\LightableTrait;
|
||||
use pocketmine\crafting\FurnaceType;
|
||||
@ -34,7 +35,7 @@ use pocketmine\math\Vector3;
|
||||
use pocketmine\player\Player;
|
||||
use function mt_rand;
|
||||
|
||||
class Furnace extends Opaque implements Lightable{
|
||||
class Furnace extends Opaque implements Lightable, HorizontalFacing{
|
||||
use FacesOppositePlacingPlayerTrait;
|
||||
use LightableTrait;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user