mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-03 08:39:53 +00:00
Sideway logs placement & correct drop
This commit is contained in:
parent
e4221b8552
commit
1a0bccf288
@ -29,11 +29,30 @@ class WoodBlock extends SolidBlock{
|
|||||||
WoodBlock::OAK => "Oak Wood",
|
WoodBlock::OAK => "Oak Wood",
|
||||||
WoodBlock::SPRUCE => "Spruce Wood",
|
WoodBlock::SPRUCE => "Spruce Wood",
|
||||||
WoodBlock::BIRCH => "Birch Wood",
|
WoodBlock::BIRCH => "Birch Wood",
|
||||||
3 => "",
|
3 => "Jungle Wood",
|
||||||
);
|
);
|
||||||
$this->meta &= 0x03;
|
$this->name = $names[$this->meta & 0x03];
|
||||||
$this->name = $names[$this->meta];
|
|
||||||
$this->hardness = 10;
|
$this->hardness = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function place(Item $item, Player $player, Block $block, Block $target, $face, $fx, $fy, $fz){
|
||||||
|
$faces = array(
|
||||||
|
0 => 0,
|
||||||
|
1 => 0,
|
||||||
|
2 => 0b1000,
|
||||||
|
3 => 0b1000,
|
||||||
|
4 => 0b0100,
|
||||||
|
5 => 0b0100,
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->meta = ($this->meta & 0x03) | $faces[$face];
|
||||||
|
$this->level->setBlock($block, $this, true, false, true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDrops(Item $item, Player $player){
|
||||||
|
return array(
|
||||||
|
array($this->id, $this->meta & 0x03, 1),
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user