Changeset 145 for trunk/src/game/Spell.h
- Timestamp:
- 11/19/08 13:40:25 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/Spell.h
r142 r145 112 112 //m_srcZ = target.m_srcZ; 113 113 114 m_mapId = 0;114 m_mapId = -1; 115 115 m_destX = target.m_destX; 116 116 m_destY = target.m_destY; … … 128 128 Unit *getUnitTarget() const { return m_unitTarget; } 129 129 void setUnitTarget(Unit *target); 130 void setDestination(float x, float y, float z, bool send = true, uint32 mapId = 0);130 void setDestination(float x, float y, float z, bool send = true, int32 mapId = -1); 131 131 void setDestination(Unit *target, bool send = true); 132 132 … … 156 156 157 157 float m_srcX, m_srcY, m_srcZ; 158 uint32 m_mapId;158 int32 m_mapId; 159 159 float m_destX, m_destY, m_destZ; 160 160 bool m_hasDest;