diff options
author | Spp <none@none> | 2010-04-07 19:14:10 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-07 19:14:10 +0200 |
commit | d19e12708001fbef2308be0e8cb5375a2ac7af48 (patch) | |
tree | 09fc8f67a6197802e0512950f0b0a3438a9834e8 /src/game/WorldSession.h | |
parent | 2e127f7a30706dc1d40c65de22ff02851732da24 (diff) |
Code style (game + scripts only):
"if(" --> "if ("
--HG--
branch : trunk
Diffstat (limited to 'src/game/WorldSession.h')
-rw-r--r-- | src/game/WorldSession.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/WorldSession.h b/src/game/WorldSession.h index 3631ae36dc8..ddaeb87862e 100644 --- a/src/game/WorldSession.h +++ b/src/game/WorldSession.h @@ -204,7 +204,7 @@ class WorldSession void SetTutorialInt(uint32 intId, uint32 value) { - if(m_Tutorials[intId] != value) + if (m_Tutorials[intId] != value) { m_Tutorials[intId] = value; m_TutorialsChanged = true; |