diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 1d3208598..a010e9bc8 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -12498,7 +12498,7 @@ void Player::OnGossipSelect(WorldObject* pSource, uint32 gossipListId, uint32 me uint32 Player::GetGossipTextId(WorldObject *pSource) { if (!pSource || pSource->GetTypeId() != TYPEID_UNIT || !((Creature*)pSource)->GetDBTableGUIDLow()) - return 0; + return DEFAULT_GOSSIP_MESSAGE; if (uint32 pos = sObjectMgr.GetNpcGossip(((Creature*)pSource)->GetDBTableGUIDLow())) return pos; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 075200847..29007b5a4 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8989" + #define REVISION_NR "8990" #endif // __REVISION_NR_H__