mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-17 04:06:54 +00:00
Rename MultiFacing -> MultiAnyFacing
to match the trait name
This commit is contained in:
@@ -46,7 +46,7 @@ use pocketmine\block\utils\CoralType;
|
||||
use pocketmine\block\utils\DyeColor;
|
||||
use pocketmine\block\utils\HorizontalFacing;
|
||||
use pocketmine\block\utils\Lightable;
|
||||
use pocketmine\block\utils\MultiFacing;
|
||||
use pocketmine\block\utils\MultiAnyFacing;
|
||||
use pocketmine\block\utils\PillarRotation;
|
||||
use pocketmine\block\utils\SignLikeRotation;
|
||||
use pocketmine\block\utils\SlabType;
|
||||
@@ -80,7 +80,7 @@ final class CommonProperties{
|
||||
/** @phpstan-var ValueFromIntProperty<AnyFacing, int> */
|
||||
public readonly ValueFromIntProperty $anyFacingClassic;
|
||||
|
||||
/** @phpstan-var OptionSetFromIntProperty<MultiFacing, int> */
|
||||
/** @phpstan-var OptionSetFromIntProperty<MultiAnyFacing, int> */
|
||||
public readonly OptionSetFromIntProperty $multiFacingFlags;
|
||||
|
||||
/** @phpstan-var IntProperty<SignLikeRotation> */
|
||||
@@ -252,8 +252,8 @@ final class CommonProperties{
|
||||
Facing::WEST => BlockLegacyMetadata::MULTI_FACE_DIRECTION_FLAG_WEST,
|
||||
Facing::EAST => BlockLegacyMetadata::MULTI_FACE_DIRECTION_FLAG_EAST
|
||||
]),
|
||||
fn(MultiFacing $b) => $b->getFaces(),
|
||||
fn(MultiFacing $b, array $v) => $b->setFaces($v)
|
||||
fn(MultiAnyFacing $b) => $b->getFaces(),
|
||||
fn(MultiAnyFacing $b, array $v) => $b->setFaces($v)
|
||||
);
|
||||
|
||||
$this->floorSignLikeRotation = new IntProperty(StateNames::GROUND_SIGN_DIRECTION, 0, 15, fn(SignLikeRotation $b) => $b->getRotation(), fn(SignLikeRotation $b, int $v) => $b->setRotation($v));
|
||||
|
Reference in New Issue
Block a user