mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
Fixed one more typo, now it even compiles :P
This commit is contained in:
parent
77af8018e1
commit
f98fa7b4df
1 changed files with 1 additions and 1 deletions
|
|
@ -650,7 +650,7 @@ void WorldSession::SendAccountDataTimes(uint32 mask)
|
|||
data << uint32(time(NULL)); // unix time of something
|
||||
data << uint8(1);
|
||||
data << uint32(mask); // type mask
|
||||
for(uint i = 0; i < NUM_ACCOUNT_DATA_TYPES; ++i)
|
||||
for(uint32 i = 0; i < NUM_ACCOUNT_DATA_TYPES; ++i)
|
||||
if(mask & (1 << i))
|
||||
data << uint32(GetAccountData(AccountDataType(i))->Time);// also unix time
|
||||
SendPacket(&data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue