clang? + remove debug info
This commit is contained in:
parent
759351045f
commit
4d071e3e0b
@ -76,30 +76,34 @@ void CreateMove()
|
||||
float max2;
|
||||
if (max > 360.0f)
|
||||
max2 = max - 360.0f;
|
||||
logging::Info("%f %f %f", ent_eye, min, max);
|
||||
if (min2 || max2) {
|
||||
if (min2 && min2 > max) {
|
||||
if (ent_eye >= max && ent_eye <= min2) {
|
||||
if (min2 || max2)
|
||||
{
|
||||
if (min2 && min2 > max)
|
||||
{
|
||||
if (ent_eye >= max && ent_eye <= min2)
|
||||
{
|
||||
if (LOCAL_E->m_vecOrigin.DistTo(ent->m_vecOrigin) <= 67)
|
||||
g_pUserCmd->buttons |= IN_ATTACK;
|
||||
}
|
||||
}
|
||||
else if (min2 && min2 < max) {
|
||||
else if (min2 && min2 < max)
|
||||
{
|
||||
if (ent_eye >= min2 && ent_eye <= max)
|
||||
if (LOCAL_E->m_vecOrigin.DistTo(ent->m_vecOrigin) <= 67)
|
||||
g_pUserCmd->buttons |= IN_ATTACK;
|
||||
}
|
||||
else if (max2 && max2 < min) {
|
||||
else if (max2 && max2 < min)
|
||||
{
|
||||
if (ent_eye >= max2 && ent_eye <= min)
|
||||
if (LOCAL_E->m_vecOrigin.DistTo(ent->m_vecOrigin) <= 67)
|
||||
g_pUserCmd->buttons |= IN_ATTACK;
|
||||
}
|
||||
else if (max && max2 > min) {
|
||||
else if (max && max2 > min)
|
||||
{
|
||||
if (ent_eye >= min && ent_eye >= min)
|
||||
if (LOCAL_E->m_vecOrigin.DistTo(ent->m_vecOrigin) <= 67)
|
||||
g_pUserCmd->buttons |= IN_ATTACK;
|
||||
}
|
||||
|
||||
}
|
||||
else if (ent_eye >= min && ent_eye <= max)
|
||||
{
|
||||
|
Reference in New Issue
Block a user