diff options
author | megamage <none@none> | 2009-04-17 16:07:54 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-17 16:07:54 -0500 |
commit | ad41b0c9e1d9d3a176d22cb42a33dfc1fb1aa55a (patch) | |
tree | 6500753f206d3843b9619f9210be1fb0d2a0ff2f /src/game/ObjectMgr.cpp | |
parent | b9d8bdeddde70359c4a3b115ccb646abb59357cc (diff) |
*Fix build.
--HG--
branch : trunk
Diffstat (limited to 'src/game/ObjectMgr.cpp')
-rw-r--r-- | src/game/ObjectMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index 3351b001e5b..637b1e9bec3 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -4857,14 +4857,14 @@ uint16 ObjectMgr::GetTaxiMount( uint32 id, uint32 team ) mount_entry = node->MountCreatureID[1]; CreatureInfo const *ci = GetCreatureTemplate(mount_entry); if(ci) - mount_id = ci->Modelid1; + mount_id = ci->Modelid_A1; } if (team == HORDE) { mount_entry = node->MountCreatureID[0]; CreatureInfo const *ci = GetCreatureTemplate(mount_entry); if(ci) - mount_id = ci->Modelid3; + mount_id = ci->Modelid_H1; } } |