mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 18:32:55 +00:00
Fixed particle constructor
This commit is contained in:
@ -25,6 +25,6 @@ use pocketmine\math\Vector3;
|
||||
|
||||
class WaterDripParticle extends GenericParticle{
|
||||
public function __construct(Vector3 $pos){
|
||||
parent::__construct($pos->x, $pos->y, $pos->z, 20);
|
||||
parent::__construct($pos, 20);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user