diff options
author | Spp <none@none> | 2010-04-07 19:12:44 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-07 19:12:44 +0200 |
commit | 182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 (patch) | |
tree | eaad3fb4d60703db8df6a94a197321c7125f58ef /src/game/WorldSession.cpp | |
parent | b27ce42704c33e292bda390265bb8fd01a433505 (diff) |
Code style (game + scripts only):
"for(" --> "for ("
--HG--
branch : trunk
Diffstat (limited to 'src/game/WorldSession.cpp')
-rw-r--r-- | src/game/WorldSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/WorldSession.cpp b/src/game/WorldSession.cpp index 52ea4929ef1..ad5dd007685 100644 --- a/src/game/WorldSession.cpp +++ b/src/game/WorldSession.cpp @@ -634,7 +634,7 @@ void WorldSession::SendAccountDataTimes(uint32 mask) data << uint32(time(NULL)); // unix time of something data << uint8(1); data << uint32(mask); // type mask - for(uint32 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); |