diff options
author | Spp <none@none> | 2010-04-30 11:21:25 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-30 11:21:25 +0200 |
commit | 1bc2a9fd4a738e2671c0d35aaba9f76a4aee209c (patch) | |
tree | fd8f5c869164752798893a4b56b97a484549c488 /src/game/ObjectMgr.cpp | |
parent | 19bed200369a49e97f8f2496f27e6be826ec8b66 (diff) |
Replace some PQuery/PExecute by more simple Query/Execute
Original patch by hunuza, extended to whole code
Closses issue 1446
--HG--
branch : trunk
Diffstat (limited to 'src/game/ObjectMgr.cpp')
-rw-r--r-- | src/game/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index feea3b79c4c..bc4b5cac9ec 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -8943,7 +8943,7 @@ void ObjectMgr::LoadGMTickets() } while (result->NextRow()); - result = CharacterDatabase.PQuery("SELECT MAX(guid) from gm_tickets"); + result = CharacterDatabase.Query("SELECT MAX(guid) from gm_tickets"); if (result) { |