Fixed particle constructor

This commit is contained in:
Shoghi Cervantes
2015-03-18 21:49:01 +01:00
parent c2a3298a7e
commit f21e457dc0
20 changed files with 20 additions and 20 deletions

View File

@ -25,6 +25,6 @@ use pocketmine\math\Vector3;
class LavaParticle extends GenericParticle{
public function __construct(Vector3 $pos){
parent::__construct($pos->x, $pos->y, $pos->z, 6);
parent::__construct($pos, 6);
}
}