Changeset 207 for trunk/src/game/QuestHandler.cpp
- Timestamp:
- 11/19/08 13:46:22 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/QuestHandler.cpp
r168 r207 88 88 recv_data >> guid; 89 89 90 sLog.outDebug ( "WORLD: Received CMSG_QUESTGIVER_HELLO npc = %u",guid);90 sLog.outDebug ("WORLD: Received CMSG_QUESTGIVER_HELLO npc = %u", GUID_LOPART(guid)); 91 91 92 92 Creature *pCreature = ObjectAccessor::GetNPCIfCanInteractWith(*_player, guid,UNIT_NPC_FLAG_NONE); 93 93 if (!pCreature) 94 94 { 95 sLog.outDebug( "WORLD: HandleQuestgiverHelloOpcode - Unit (GUID: %u) not found or you can't interact with him.", uint32(GUID_LOPART(guid)) ); 95 sLog.outDebug ("WORLD: HandleQuestgiverHelloOpcode - Unit (GUID: %u) not found or you can't interact with him.", 96 GUID_LOPART(guid)); 96 97 return; 97 98 }