aboutsummaryrefslogtreecommitdiff
path: root/src/game/Map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Map.h')
-rw-r--r--src/game/Map.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/game/Map.h b/src/game/Map.h
index bcdf3ec8f6a..0c26fb36a00 100644
--- a/src/game/Map.h
+++ b/src/game/Map.h
@@ -134,13 +134,13 @@ class TRINITY_DLL_SPEC Map : public GridRefManager<NGridType>, public Trinity::O
// currently unused for normal maps
bool CanUnload(uint32 diff)
- {
- if(!m_unloadTimer)
+ {
+ if(!m_unloadTimer)
return false;
- if(m_unloadTimer <= diff)
- return true;
- m_unloadTimer -= diff;
- return false;
+ if(m_unloadTimer <= diff)
+ return true;
+ m_unloadTimer -= diff;
+ return false;
}
virtual bool Add(Player *);