Rename DestroyBlockParticle -> BlockBreakParticle

closes #3461

literally every other particle/sound has the subject first, followed by the (optional) verb, and finally Particle (or Sound).
In addition, we refer to breaking blocks as 'break' everywhere except here, where we refer to it as 'destroy'.
This commit is contained in:
Dylan K. Taylor
2021-05-06 18:33:18 +01:00
parent 7d1c4efdfb
commit 742f86e022
4 changed files with 6 additions and 5 deletions

View File

@ -28,7 +28,7 @@ use pocketmine\math\Vector3;
use pocketmine\network\mcpe\convert\RuntimeBlockMapping;
use pocketmine\network\mcpe\protocol\LevelEventPacket;
class DestroyBlockParticle implements Particle{
class BlockBreakParticle implements Particle{
/** @var Block */
private $block;