Sideway logs placement & correct drop

This commit is contained in:
Shoghi Cervantes 2013-11-23 15:21:48 +01:00
parent e4221b8552
commit 1a0bccf288

View File

@ -29,11 +29,30 @@ class WoodBlock extends SolidBlock{
WoodBlock::OAK => "Oak Wood",
WoodBlock::SPRUCE => "Spruce Wood",
WoodBlock::BIRCH => "Birch Wood",
3 => "",
3 => "Jungle Wood",
);
$this->meta &= 0x03;
$this->name = $names[$this->meta];
$this->name = $names[$this->meta & 0x03];
$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),
);
}
}