Skip to content

Commit

Permalink
Fix previous commit *headbang. Thx to Reamer for pointing
Browse files Browse the repository at this point in the history
  • Loading branch information
Schmoozerd committed Feb 7, 2012
1 parent 1f96ccd commit a43ee9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/Group.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1165,9 +1165,9 @@ bool Group::_addMember(ObjectGuid guid, const char* name, bool isAssistant, uint


uint32 lastMap = 0; uint32 lastMap = 0;
if (player && player->IsInWorld()) if (player && player->IsInWorld())
player->GetMapId(); lastMap = player->GetMapId();
else if (player && player->IsBeingTeleported()) else if (player && player->IsBeingTeleported())
player->GetTeleportDest().mapid; lastMap = player->GetTeleportDest().mapid;


MemberSlot member; MemberSlot member;
member.guid = guid; member.guid = guid;
Expand Down

0 comments on commit a43ee9a

Please sign in to comment.