rotationPitch = (float)-Math.atan2(dy, f3);
} else {
if(ringSendCooldown > 0) ringSendCooldown--;
if(ringSendList.size() > 0 && ringSendCooldown <= 0) {
ringSendCooldown = ringSendList.size() > 10 ? 1 : 5;
NetworkHandler.sendToAllAround(new PacketSpawnRing(xCoord + 0.5, yCoord + 0.8, zCoord + 0.5, drone, ringSendList.remove(0)), worldObj);
}
}
}
}