This commit is contained in:
Dylan K. Taylor 2022-07-05 14:14:27 +01:00
parent 325f1cf82e
commit 6be92ea6f7
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -63,9 +63,9 @@ class BrewingStand extends Transparent{
protected function encodeState(RuntimeDataWriter $w) : void{
foreach([
\pocketmine\block\utils\BrewingStandSlot::EAST(),
\pocketmine\block\utils\BrewingStandSlot::NORTHWEST(),
\pocketmine\block\utils\BrewingStandSlot::SOUTHWEST(),
BrewingStandSlot::EAST(),
BrewingStandSlot::NORTHWEST(),
BrewingStandSlot::SOUTHWEST(),
] as $member){
$w->writeBool(isset($this->slots[$member->id()]));
}