diff options
author | Nay <dnpd.dd@gmail.com> | 2012-08-30 22:44:33 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2012-08-30 22:44:33 +0100 |
commit | e3d9768a50a3b2b700d65e0cc96e697a5c9d22dc (patch) | |
tree | 221f2bc4bd2745ab9bcc7389523f4a43d8ac8b11 /src/server/game/Maps/Map.cpp | |
parent | abbb896cfb73017cf1c313d597984a9ce0a9dcab (diff) |
Core: Fix many "errors"/warnings and coding style (3)
Game
Errors were found using Cppcheck, open-source static analysis tool
Diffstat (limited to 'src/server/game/Maps/Map.cpp')
-rwxr-xr-x | src/server/game/Maps/Map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Maps/Map.cpp b/src/server/game/Maps/Map.cpp index 53b2f9cf437..c06c7414e6e 100755 --- a/src/server/game/Maps/Map.cpp +++ b/src/server/game/Maps/Map.cpp @@ -2688,7 +2688,7 @@ uint32 InstanceMap::GetMaxResetDelay() const /* ******* Battleground Instance Maps ******* */ BattlegroundMap::BattlegroundMap(uint32 id, time_t expiry, uint32 InstanceId, Map* _parent, uint8 spawnMode) - : Map(id, expiry, InstanceId, spawnMode, _parent) + : Map(id, expiry, InstanceId, spawnMode, _parent), m_bg(NULL) { //lets initialize visibility distance for BG/Arenas BattlegroundMap::InitVisibilityDistance(); |