diff options
author | megamage <none@none> | 2009-03-21 14:53:38 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-21 14:53:38 -0600 |
commit | de849cc5087e9a11ddff2f4e9ec42b1ec293cf2a (patch) | |
tree | 209f7f4bb8e6b4fde7dbd57305a1e797cc5010af /src/game/MiscHandler.cpp | |
parent | 3b09489f880f13116ac285085982721ef60920cd (diff) |
Small code cleanup and partial merge with dev branch Author: tomrus88
--HG--
branch : trunk
Diffstat (limited to 'src/game/MiscHandler.cpp')
-rw-r--r-- | src/game/MiscHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/MiscHandler.cpp b/src/game/MiscHandler.cpp index 446a7331615..b284db806d7 100644 --- a/src/game/MiscHandler.cpp +++ b/src/game/MiscHandler.cpp @@ -878,7 +878,7 @@ void WorldSession::HandleUpdateAccountData(WorldPacket &recv_data) if(decompressedSize == 0) // erase { - SetAccountData(type, timestamp, ""); + SetAccountData(type, 0, ""); WorldPacket data(SMSG_UPDATE_ACCOUNT_DATA_COMPLETE, 4+4); data << uint32(type); @@ -978,7 +978,7 @@ void WorldSession::HandleSetActionButtonOpcode(WorldPacket& recv_data) } else if(type==ACTION_BUTTON_SPELL) { - sLog.outDetail( "MISC: Added Action %u into button %u", action, button ); + sLog.outDetail( "MISC: Added Spell %u into button %u", action, button ); GetPlayer()->addActionButton(button,action,type,misc); } else if(type==ACTION_BUTTON_ITEM) |