Explosion: remove dead code

this was needed for the old ExplodePacket, which was removed a few versions back.
This commit is contained in:
Dylan K. Taylor 2020-10-29 13:32:56 +00:00
parent 340881d590
commit c0dafe7872

View File

@ -154,7 +154,6 @@ class Explosion{
* and creating sounds and particles.
*/
public function explodeB() : bool{
$send = [];
$updateBlocks = [];
$source = (new Vector3($this->source->x, $this->source->y, $this->source->z))->floor();
@ -254,7 +253,6 @@ class Explosion{
$updateBlocks[$index] = true;
}
}
$send[] = new Vector3($block->x - $source->x, $block->y - $source->y, $block->z - $source->z);
}
$this->level->addParticle(new HugeExplodeSeedParticle($source));