diff options
| author | Az@zel <azazel.kon@gmail.com> | 2011-05-11 12:32:54 +0600 |
|---|---|---|
| committer | Az@zel <azazel.kon@gmail.com> | 2011-05-11 12:32:54 +0600 |
| commit | 52bc1e5fd3a166ebc2d03b42287fbd07de8e782a (patch) | |
| tree | 646626c206ca766283f3af340489a9bffb755694 /src/server/game/Tickets/TicketMgr.cpp | |
| parent | 58f0a4b15207d4c80439fe193b41f40c71719c22 (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-x | src/server/game/Tickets/TicketMgr.cpp | 2 |
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)); } |
