Skip to content

Commit

Permalink
Core: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
DDuarte committed Aug 6, 2012
1 parent b575fb7 commit 64ada0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Handlers/CharacterHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2130,6 +2130,6 @@ void WorldSession::HandleRandomizeCharNameOpcode(WorldPacket& recvData)
WorldPacket data(SMSG_RANDOMIZE_CHAR_NAME, 10);
data.WriteBit(0); // unk
data.WriteBits(name->size(), 7);
data.append(name->c_str(), str->size());
data.append(name->c_str(), name->size());
SendPacket(&data);
}

0 comments on commit 64ada0f

Please sign in to comment.