Remove unnecessary HorizontalFacingTrait (#5930)

FacingOppositePlacingPlayerTrait already includes HorizontalFacingTrait, so we don't need to include it twice.
This commit is contained in:
dohwi
2023-07-24 20:16:56 +09:00
committed by GitHub
parent 43770313ba
commit 4eb9dacd3c
10 changed files with 0 additions and 20 deletions

View File

@ -25,7 +25,6 @@ namespace pocketmine\block;
use pocketmine\block\tile\Lectern as TileLectern;
use pocketmine\block\utils\FacesOppositePlacingPlayerTrait;
use pocketmine\block\utils\HorizontalFacingTrait;
use pocketmine\block\utils\SupportType;
use pocketmine\data\runtime\RuntimeDataDescriber;
use pocketmine\item\Item;
@ -39,7 +38,6 @@ use function count;
class Lectern extends Transparent{
use FacesOppositePlacingPlayerTrait;
use HorizontalFacingTrait;
protected int $viewedPage = 0;
protected ?WritableBookBase $book = null;