mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-09 22:20:24 +00:00
QuestMgr::movePCInstance converted to xyz_heading
This commit is contained in:
@@ -2974,12 +2974,12 @@ XS(XS__MovePCInstance)
|
||||
|
||||
if (items == 4)
|
||||
{
|
||||
quest_manager.MovePCInstance(zoneid, instanceid, x, y, z, 0.0f);
|
||||
quest_manager.MovePCInstance(zoneid, instanceid, xyz_heading(x, y, z, 0.0f));
|
||||
}
|
||||
else
|
||||
{
|
||||
float heading = (float)SvNV(ST(5));
|
||||
quest_manager.MovePCInstance(zoneid, instanceid, x, y, z, heading);
|
||||
quest_manager.MovePCInstance(zoneid, instanceid, xyz_heading(x, y, z, heading));
|
||||
}
|
||||
|
||||
XSRETURN_EMPTY;
|
||||
|
||||
Reference in New Issue
Block a user