Skip to content

Commit

Permalink
[6964] Correctly show new guild rank name on guild demote.
Browse files Browse the repository at this point in the history
Signed-off-by: ApoC <apoc@nymfe.net>
  • Loading branch information
apoc committed Dec 28, 2008
1 parent 96accd2 commit cb1650e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/GuildHandler.cpp
Expand Up @@ -380,7 +380,7 @@ void WorldSession::HandleGuildDemoteOpcode(WorldPacket& recvPacket)
data << (uint8)3;
data << GetPlayer()->GetName();
data << plName;
data << guild->GetRankName(slot->RankId+1);
data << guild->GetRankName(slot->RankId);
guild->BroadcastPacket(&data);
}

Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "6963"
#define REVISION_NR "6964"
#endif // __REVISION_NR_H__

0 comments on commit cb1650e

Please sign in to comment.