Fixed redstone scheduled update

This commit is contained in:
Shoghi Cervantes Pueyo 2013-05-15 23:29:35 +02:00
parent e0e724bcc3
commit d071497747
3 changed files with 7 additions and 3 deletions

View File

@ -35,7 +35,7 @@ class GlowingRedstoneOreBlock extends SolidBlock{
$this->level->setBlock($this, BlockAPI::get(REDSTONE_ORE, $this->meta), false);
return BLOCK_UPDATE_WEAK;
}else{
$level->scheduleBlockUpdate($this, mt_rand(45, 100));
$this->level->scheduleBlockUpdate($this, mt_rand(45, 100));
}
return false;
}

View File

@ -32,7 +32,7 @@ class RedstoneOreBlock extends SolidBlock{
public function onUpdate($type){
if($type === BLOCK_UPDATE_NORMAL or $type === BLOCK_UPDATE_TOUCH){
$this->level->setBlock($this, GLOWING_REDSTONE_ORE, $this->getMetadata(), false);
$this->level->setBlock($this, BlockAPI::get(GLOWING_REDSTONE_ORE, $this->meta), false);
$this->level->scheduleBlockUpdate($this, mt_rand(45, 100));
return BLOCK_UPDATE_WEAK;
}

View File

@ -180,7 +180,7 @@ class Level{
)) !== false){
$ret = $this->level->setBlock($pos->x, $pos->y, $pos->z, $block->getID(), $block->getMetadata());
if($update === true){
$this->server->api->block->blockUpdate($pos, BLOCK_UPDATE_NORMAL); //????? water?
$this->server->api->block->blockUpdate($this->getBlock($pos), BLOCK_UPDATE_NORMAL); //????? water?
$this->server->api->block->blockUpdateAround($pos, BLOCK_UPDATE_NORMAL);
}
if($tiles === true){
@ -256,4 +256,8 @@ class Level{
public function getSeed(){
return (int) $this->level->getData("seed");
}
public function scheduleBlockUpdate(Position $pos, $delay, $type = BLOCK_UPDATE_SCHEDULED){
return $this->server->api->block->scheduleBlockUpdate($pos, $delay, $type);
}
}