Cake is now broken if the bottom block is removed [MCPE-4661]

This commit is contained in:
Shoghi Cervantes 2013-08-26 15:35:20 +02:00
parent 4156aad71f
commit 3779a66bdb
2 changed files with 23 additions and 0 deletions

View File

@ -33,6 +33,16 @@ class CakeBlock extends TransparentBlock{
$this->meta = $meta & 0x07;
}
public function onUpdate($type){
if($type === BLOCK_UPDATE_NORMAL){
if($this->getSide(0)->getID() === AIR){ //Replace wit common break method
$this->level->setBlock($this, new AirBlock(), false);
return BLOCK_UPDATE_NORMAL;
}
}
return false;
}
public function getDrops(Item $item, Player $player){
return array();
}

View File

@ -31,6 +31,19 @@ class IronDoorBlock extends DoorBlock{
//$this->isActivable = true;
}
public function onUpdate($type){
if($type === BLOCK_UPDATE_NORMAL){
if($this->getSide(0)->getID() === AIR){ //Replace wit common break method
$this->level->setBlock($this, new AirBlock(), false);
if($this->getSide(1) instanceof DoorBlock){
$this->level->setBlock($this->getSide(1), new AirBlock(), false);
}
return BLOCK_UPDATE_NORMAL;
}
}
return false;
}
public function getBreakTime(Item $item, Player $player){
if(($player->gamemode & 0x01) === 0x01){
return 0.20;