diff options
Diffstat (limited to 'src/game/Transports.h')
-rw-r--r-- | src/game/Transports.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Transports.h b/src/game/Transports.h index 482ec16352a..0e39d57c089 100644 --- a/src/game/Transports.h +++ b/src/game/Transports.h @@ -88,12 +88,13 @@ class Transport : private GameObject { WayPoint() : mapid(0), x(0), y(0), z(0), teleport(false) {} WayPoint(uint32 _mapid, float _x, float _y, float _z, bool _teleport) : - mapid(_mapid), x(_x), y(_y), z(_z), teleport(_teleport) {} + mapid(_mapid), x(_x), y(_y), z(_z), teleport(_teleport), delayed(false) {} uint32 mapid; float x; float y; float z; bool teleport; + bool delayed; }; typedef std::map<uint32, WayPoint> WayPointMap; |