mirror of
https://github.com/mangosfour/server.git
synced 2025-12-25 04:37:02 +00:00
[7733] Fixed compile error on VC2005ee.
This commit is contained in:
parent
cb72302a8a
commit
6192fcbd0c
4 changed files with 5 additions and 5 deletions
|
|
@ -436,9 +436,9 @@ void Transport::TeleportTransport(uint32 newMapid, float x, float y, float z)
|
|||
SetMapId(newMapid);
|
||||
Relocate(x, y, z);
|
||||
|
||||
for(PlayerSet::const_iterator itr = m_passengers.begin(); itr != m_passengers.end();)
|
||||
for(PlayerSet::iterator itr = m_passengers.begin(); itr != m_passengers.end();)
|
||||
{
|
||||
PlayerSet::const_iterator it2 = itr;
|
||||
PlayerSet::iterator it2 = itr;
|
||||
++itr;
|
||||
|
||||
Player *plr = *it2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue