Core/Transports: Fixed clientside position of stoppable transports

Port From (https://github.com/TrinityCore/TrinityCore/commit/96026bfc58faa65aeef5cb1430aa2e442a43b115)
This commit is contained in:
Hondacrx
2025-08-10 17:08:30 -04:00
parent 9340c89bb1
commit f27087d61b
2 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -766,7 +766,7 @@ namespace Game.Entities
public uint GetTransportPeriod() { return m_gameObjectData.Level; }
public void SetPeriod(uint period) { SetLevel(period); }
public uint GetTimer() { return _pathProgress; }
public bool IsStopRequested() { return _requestStopTimestamp.HasValue; }
public uint? GetNextStopTimestamp() { return _requestStopTimestamp; }
public bool IsStopped()
{
return HasDynamicFlag(GameObjectDynamicLowFlags.Stopped);