mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-23 00:55:57 +00:00
Fixed redstone scheduled update
This commit is contained in:
parent
e0e724bcc3
commit
d071497747
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user