Fixed one more typo, now it even compiles :P

This commit is contained in:
tomrus88 2009-08-29 16:13:02 +04:00
parent 77af8018e1
commit f98fa7b4df

View file

@ -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);