[12728] Fixed typo

This commit is contained in:
sanctum32 2013-11-17 21:05:27 +02:00 committed by Antz
parent 3c89d661aa
commit 75a4184ef5
2 changed files with 2 additions and 2 deletions

View file

@ -680,7 +680,7 @@ void WorldSession::HandleResurrectResponseOpcode(WorldPacket& recv_data)
void WorldSession::HandleReturnToGraveyard(WorldPacket& /*recvPacket*/)
{
Player* pPlayer = GetPlayer();
if (pPlayer->isAlive() || !Player->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_GHOST))
if (pPlayer->isAlive() || !pPlayer->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_GHOST))
return;
Corpse* pCorpse = pPlayer->GetCorpse();

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12727"
#define REVISION_NR "12728"
#endif // __REVISION_NR_H__