mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-05 17:42:24 +00:00
Removed Mob::DistNoRootNoZ
This commit is contained in:
parent
8619a0b518
commit
4431aa0197
@ -2274,13 +2274,6 @@ bool Mob::CanThisClassBlock(void) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
float Mob::DistNoRootNoZ(float x, float y) const {
|
|
||||||
float xDiff = x - m_Position.m_X;
|
|
||||||
float yDiff = y - m_Position.m_Y;
|
|
||||||
|
|
||||||
return ( (xDiff * xDiff) + (yDiff * yDiff) );
|
|
||||||
}
|
|
||||||
|
|
||||||
float Mob::DistNoRootNoZ(const Mob &other) const {
|
float Mob::DistNoRootNoZ(const Mob &other) const {
|
||||||
float xDiff = other.m_Position.m_X - m_Position.m_X;
|
float xDiff = other.m_Position.m_X - m_Position.m_X;
|
||||||
float yDiff = other.m_Position.m_Y - m_Position.m_Y;
|
float yDiff = other.m_Position.m_Y - m_Position.m_Y;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user