Added Mob Heads

Fixed duplicated items in JSON file
This commit is contained in:
Jorge González
2015-12-24 00:09:36 -06:00
committed by iksaku
parent 085ff56362
commit 012d46dfd8
8 changed files with 228 additions and 11 deletions

View File

@ -53,19 +53,13 @@ class SignPost extends Transparent{
public function place(Item $item, Block $block, Block $target, $face, $fx, $fy, $fz, Player $player = null){
if($face !== 0){
$faces = [
2 => 2,
3 => 3,
4 => 4,
5 => 5,
];
if(!isset($faces[$face])){
if($face === 1){
$this->meta = floor((($player->yaw + 180) * 16 / 360) + 0.5) & 0x0F;
$this->getLevel()->setBlock($block, Block::get(Item::SIGN_POST, $this->meta), true);
return true;
}else{
$this->meta = $faces[$face];
$this->meta = $face;
$this->getLevel()->setBlock($block, Block::get(Item::WALL_SIGN, $this->meta), true);
return true;