[6964] Correctly show new guild rank name on guild demote.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2008-12-28 20:25:38 +01:00
parent 15bb2d0f03
commit 58a05b831a
2 changed files with 2 additions and 2 deletions

View file

@ -380,7 +380,7 @@ void WorldSession::HandleGuildDemoteOpcode(WorldPacket& recvPacket)
data << (uint8)3; data << (uint8)3;
data << GetPlayer()->GetName(); data << GetPlayer()->GetName();
data << plName; data << plName;
data << guild->GetRankName(slot->RankId+1); data << guild->GetRankName(slot->RankId);
guild->BroadcastPacket(&data); guild->BroadcastPacket(&data);
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "6963" #define REVISION_NR "6964"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__