Skip to content

Commit 88e1601

Browse files
committed
ugh
1 parent 32e1fd8 commit 88e1601

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/server/game/Entities/Unit/Unit.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13248,7 +13248,7 @@ void Unit::SetFacingTo(float ori, bool force/* = true*/, Milliseconds duration/*
1324813248
if (!force && (!IsStopped() || !movespline->Finalized()))
1324913249
return;
1325013250

13251-
GetMotionMaster()->MoveFace(ori, duration);
13251+
GetMotionMaster()->MoveFace(ori, duration, id);
1325213252
}
1325313253

1325413254
void Unit::SetFacingToObject(WorldObject const* object, bool force/* = true*/, Milliseconds duration/* = 1s*/, uint32 id/* = EVENT_FACE*/)
@@ -13257,7 +13257,7 @@ void Unit::SetFacingToObject(WorldObject const* object, bool force/* = true*/, M
1325713257
if (!force && (!IsStopped() || !movespline->Finalized()))
1325813258
return;
1325913259

13260-
GetMotionMaster()->MoveFace(object, duration);
13260+
GetMotionMaster()->MoveFace(object, duration, id);
1326113261
}
1326213262

1326313263
bool Unit::SetWalk(bool enable)

0 commit comments

Comments
 (0)