* Spawns this particle - making it visible to the given player
* @param player to spawn the particle for
*/
public void spawn(SpoutPlayer player) {
if (player.isSpoutCraftEnabled() && player.getLocation().distance(location) <= range) {
player.sendPacket(new PacketParticle(this));
}
}