Merge branch 'stable' into master

# Conflicts:
#	resources/vanilla
#	src/world/Explosion.php
This commit is contained in:
Dylan K. Taylor 2020-08-16 01:00:04 +01:00
commit 62394811e3

View File

@ -228,7 +228,10 @@ class Explosion{
$this->world->setBlockAt($pos->x, $pos->y, $pos->z, $airBlock, false); //TODO: should updating really be disabled here?
$this->world->updateAllLight($pos->x, $pos->y, $pos->z);
}
}
foreach($this->affectedBlocks as $block){
$pos = $block->getPos();
foreach(Facing::ALL as $side){
$sideBlock = $pos->getSide($side);
if(!$this->world->isInWorld($sideBlock->x, $sideBlock->y, $sideBlock->z)){