aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Tickets/TicketMgr.cpp
diff options
context:
space:
mode:
authorAz@zel <azazel.kon@gmail.com>2011-05-11 12:32:54 +0600
committerAz@zel <azazel.kon@gmail.com>2011-05-11 12:32:54 +0600
commit52bc1e5fd3a166ebc2d03b42287fbd07de8e782a (patch)
tree646626c206ca766283f3af340489a9bffb755694 /src/server/game/Tickets/TicketMgr.cpp
parent58f0a4b15207d4c80439fe193b41f40c71719c22 (diff)
Core/Misc: more warning fixes (some of them were real logical flaws - comparison of unrelated types) (Thanks to Tassader for pointing out that one line was completely unnecessary)
Diffstat (limited to 'src/server/game/Tickets/TicketMgr.cpp')
-rwxr-xr-xsrc/server/game/Tickets/TicketMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Tickets/TicketMgr.cpp b/src/server/game/Tickets/TicketMgr.cpp
index cc124c28a88..cbfea3b81bd 100755
--- a/src/server/game/Tickets/TicketMgr.cpp
+++ b/src/server/game/Tickets/TicketMgr.cpp
@@ -196,7 +196,7 @@ void GmTicket::TeleportTo(Player* player) const
///////////////////////////////////////////////////////////////////////////////////////////////////
// Ticket manager
-TicketMgr::TicketMgr() : _lastTicketId(0), _lastSurveyId(0), _openTicketCount(0), _lastChange(time(NULL)), _status(true) { }
+TicketMgr::TicketMgr() : _status(true), _lastTicketId(0), _lastSurveyId(0), _openTicketCount(0), _lastChange(time(NULL)) { }
void TicketMgr::Initialize() { SetStatus(sWorld->getBoolConfig(CONFIG_ALLOW_TICKETS)); }