mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-01 15:46:37 +00:00
heading, x_pos, y_pos, and z_pos replaced with m_Position in Mob
This commit is contained in:
+4
-4
@@ -58,10 +58,10 @@ Beacon::Beacon(Mob *at_mob, int lifetime)
|
||||
caster_id = 0;
|
||||
|
||||
// copy location
|
||||
x_pos = at_mob->GetX();
|
||||
y_pos = at_mob->GetY();
|
||||
z_pos = at_mob->GetZ();
|
||||
heading = at_mob->GetHeading();
|
||||
m_Position.m_X = at_mob->GetX();
|
||||
m_Position.m_Y = at_mob->GetY();
|
||||
m_Position.m_Z = at_mob->GetZ();
|
||||
m_Position.m_Heading = at_mob->GetHeading();
|
||||
|
||||
if(lifetime)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user