Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Core: Add some more output in HandleSetActionButtonOpcode (show playe…
…rname/guid as well)

Signed-off-by: click <click@gonnamakeyou.com>
  • Loading branch information
Discovered authored and click committed Feb 25, 2012
1 parent e37d9d7 commit c10e670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Handlers/MiscHandler.cpp
Expand Up @@ -1058,7 +1058,7 @@ void WorldSession::HandleSetActionButtonOpcode(WorldPacket& recv_data)
sLog->outDetail("MISC: Added Item %u into button %u", action, button);
break;
default:
sLog->outError("MISC: Unknown action button type %u for action %u into button %u", type, action, button);
sLog->outError("MISC: Unknown action button type %u for action %u into button %u for player %s (GUID: %u)", type, action, button, _player->GetName(), _player->GetGUIDLow());
return;
}
GetPlayer()->addActionButton(button, action, type);
Expand Down

0 comments on commit c10e670

Please sign in to comment.